bump version

This commit is contained in:
Steffen Jaeckel 2017-08-28 17:02:30 +02:00
parent 49e5432060
commit 36ef587709
3 changed files with 5 additions and 4 deletions

View File

@ -49,7 +49,7 @@
\begin{document}
\frontmatter
\pagestyle{empty}
\title{LibTomMath User Manual \\ v1.0}
\title{LibTomMath User Manual \\ v1.0.1}
\author{Tom St Denis \\ tstdenis82@gmail.com}
\maketitle
This text, the library and the accompanying textbook are all hereby placed in the public domain. This book has been

View File

@ -57,7 +57,7 @@ install: $(LIBNAME)
install -d $(DESTDIR)$(INCPATH)
$(LT) --mode=install install -m 644 $(LIBNAME) $(DESTDIR)$(LIBPATH)/$(LIBNAME)
install -m 644 $(HEADERS_PUB) $(DESTDIR)$(INCPATH)
sed -e 's,^prefix=.*,prefix=$(PREFIX),' -e 's,^Version:.*,Version: $(VERSION),' libtommath.pc.in > libtommath.pc
sed -e 's,^prefix=.*,prefix=$(PREFIX),' -e 's,^Version:.*,Version: $(VERSION_PC),' libtommath.pc.in > libtommath.pc
install -d $(DESTDIR)$(LIBPATH)/pkgconfig
install -m 644 libtommath.pc $(DESTDIR)$(LIBPATH)/pkgconfig/

View File

@ -3,8 +3,9 @@
#
#version of library
VERSION=1.0
VERSION_SO=1:0
VERSION=1.0.1-rc1
VERSION_PC=1.0.1
VERSION_SO=1:1
# default make target
default: ${LIBNAME}