bump the version number
This commit is contained in:
parent
755f75857e
commit
82ab22f237
3 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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])
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue