From feb17a224f0157483b2b31516936591ea15d4adb Mon Sep 17 00:00:00 2001 From: Jan Nijtmans Date: Wed, 4 Dec 2019 15:21:31 +0100 Subject: [PATCH] Change version numbers before 2.0 release --- appveyor.yml | 2 +- doc/bn.tex | 2 +- makefile.mingw | 2 +- makefile.unix | 2 +- makefile_include.mk | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 02c343057..001fd1715 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 1.2.0-{build} +version: 2.0.0-{build} branches: only: - master diff --git a/doc/bn.tex b/doc/bn.tex index 711ebf8ff..b39899b94 100644 --- a/doc/bn.tex +++ b/doc/bn.tex @@ -51,7 +51,7 @@ \begin{document} \frontmatter \pagestyle{empty} -\title{LibTomMath User Manual \\ v1.2.0} +\title{LibTomMath User Manual \\ v2.0.0} \author{LibTom Projects \\ www.libtom.net} \maketitle This text, the library and the accompanying textbook are all hereby placed in the public domain. diff --git a/makefile.mingw b/makefile.mingw index ae98a5c86..8f46f6f32 100644 --- a/makefile.mingw +++ b/makefile.mingw @@ -25,7 +25,7 @@ LTM_LDFLAGS = $(LDFLAGS) -static-libgcc #Libraries to be created LIBMAIN_S =libtommath.a LIBMAIN_I =libtommath.dll.a -LIBMAIN_D =libtommath.dll +LIBMAIN_D =tommath2.dll #List of objects to compile (all goes to libtommath.a) OBJECTS=mp_2expt.o mp_abs.o mp_add.o mp_add_d.o mp_addmod.o mp_and.o mp_clamp.o mp_clear.o mp_clear_multi.o \ diff --git a/makefile.unix b/makefile.unix index 2b2589c98..88e393f74 100644 --- a/makefile.unix +++ b/makefile.unix @@ -20,7 +20,7 @@ ARFLAGS = rcs CFLAGS = -O2 LDFLAGS = -VERSION = 1.2.0 +VERSION = 2.0.0 #Compilation flags LTM_CFLAGS = -I. $(CFLAGS) diff --git a/makefile_include.mk b/makefile_include.mk index be53ba7b5..0290ffde7 100644 --- a/makefile_include.mk +++ b/makefile_include.mk @@ -3,9 +3,9 @@ # #version of library -VERSION=1.2.0-develop -VERSION_PC=1.2.0 -VERSION_SO=3:0:2 +VERSION=2.0.0-develop +VERSION_PC=2.0.0 +VERSION_SO=4:0:0 PLATFORM := $(shell uname | sed -e 's/_.*//')