File tree Expand file tree Collapse file tree 7 files changed +18
-8
lines changed Expand file tree Collapse file tree 7 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 77cmake_minimum_required (VERSION 3.10)
88
99project (libtommath
10- VERSION 1.2 .0
10+ VERSION 1.3 .0
1111 DESCRIPTION "A free open source portable number theoretic multiple-precision integer (MPI) library written entirely in C."
1212 HOMEPAGE_URL "https://www.libtom.net/LibTomMath"
1313 LANGUAGES C)
Original file line number Diff line number Diff line change 1- version : 1.2.1 -{build}
1+ version : 1.3.0 -{build}
22branches :
33 only :
44 - master
Original file line number Diff line number Diff line change 1+ Mar 27th, 2024
2+ v1.3.0
3+ -- Deprecate more APIs which are replaced in develop (PR #572)
4+ -- Add support for CMake (PR #573)
5+ -- Add support for GitHub Actions (PR #573)
6+
17Sep 04th, 2023
28v1.2.1
39 -- Bugfix release because of potential integer overflow
Original file line number Diff line number Diff line change 5151\begin {document }
5252\frontmatter
5353\pagestyle {empty}
54- \title {LibTomMath User Manual \\ v1.2.1 }
54+ \title {LibTomMath User Manual \\ v1.3.0 }
5555\author {LibTom Projects \\ www.libtom.net}
5656\maketitle
5757This text, the library and the accompanying textbook are all hereby placed in the public domain.
Original file line number Diff line number Diff line change @@ -126,8 +126,12 @@ cmp: profiled_single
126126 ./timing
127127 $(MAKE ) -C logs/ cmp
128128
129+ zipup :
130+ $(MAKE ) clean
131+ $(MAKE ) .zipup
132+
129133TODAY =$(shell date -I)
130- zipup : clean astyle new_file docs
134+ . zipup : astyle new_file docs
131135 @# Update the index, so diff-index won't fail in case the pdf has been created.
132136 @# As the pdf creation modifies the tex files, git sometimes detects the
133137 @# modified files, but misses that it's put back to its original version.
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ ARFLAGS = rcs
2020CFLAGS = -O2
2121LDFLAGS =
2222
23- VERSION = 1.2.1
23+ VERSION = 1.3.0
2424
2525#Compilation flags
2626LTM_CFLAGS = -I. $(CFLAGS)
Original file line number Diff line number Diff line change 33#
44
55# version of library
6- VERSION =1.2.1-develop
7- VERSION_PC =1.2.1
8- VERSION_SO =3:1:2
6+ VERSION =1.3.0
7+ VERSION_PC =1.3.0
8+ VERSION_SO =4:0:3
99
1010PLATFORM := $(shell uname | sed -e 's/_.* //')
1111
You can’t perform that action at this time.
0 commit comments