From 82ab22f2374133dbdaa89b4c0f06b04eec2e5db8 Mon Sep 17 00:00:00 2001 From: Vlasta Vesely Date: Thu, 23 Mar 2023 09:08:30 +0100 Subject: [PATCH] bump the version number --- Makefile.in | 4 ++-- configure.ac | 2 +- tests/integration.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.in b/Makefile.in index ec7a09e..874a3c2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -58,7 +58,7 @@ $(ANAME): $(OBJECTS) $(QUIET_AR) $(AR) rcs $@ $^ $(REALNAME): $(OBJECTS) - $(QUIET_LD) $(CC) $^ -shared -o $@ $(LFLAGS) + $(QUIET_LD) $(CC) $^ -shared -Wl,-soname=$(SONAME) -o $@ $(LFLAGS) $(SONAME): $(REALNAME) $(QUIET_LN) $(LN_S) -f $< $@ @@ -84,7 +84,7 @@ tests/test: $(OBJECTS) $(TEST_OBJECTS) install: install-prog install-lib install-dev install-prog: - $(MKDIR_P) $(bindir) $(libdir) $(mandir)/man1 + $(MKDIR_P) $(bindir) $(mandir)/man1 $(INSTALL_PROGRAM) $(PROGNAME) $(bindir) $(INSTALL_DATA) $(PROGNAME).1.gz $(mandir)/man1 diff --git a/configure.ac b/configure.ac index 1401bad..ee47963 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([sanskrit-iast], [3.0.0], [vlastavesely@protonmail.ch]) +AC_INIT([sanskrit-iast], [3.1.0], [vlastavesely@protonmail.ch]) AC_CONFIG_SRCDIR([transliteration.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/tests/integration.c b/tests/integration.c index 65283d9..f774585 100644 --- a/tests/integration.c +++ b/tests/integration.c @@ -152,7 +152,7 @@ END_TEST START_TEST(test_version) { - test_output("./iast -v", "iast v3.0.0\n"); + test_output("./iast -v", "iast v3.1.0\n"); } END_TEST