Skip to content

Commit b57b2cd

Browse files
committed
Merge tag 'v1.3.0' into develop
v1.3.0
2 parents 138309c + 95d80fd commit b57b2cd

File tree

7 files changed

+18
-8
lines changed

7 files changed

+18
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
cmake_minimum_required(VERSION 3.10)
88

99
project(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)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.2.1-{build}
1+
version: 1.3.0-{build}
22
branches:
33
only:
44
- master

changes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
17
Sep 04th, 2023
28
v1.2.1
39
-- Bugfix release because of potential integer overflow

doc/bn.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
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
5757
This text, the library and the accompanying textbook are all hereby placed in the public domain.

makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
129133
TODAY=$(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.

makefile.unix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ARFLAGS = rcs
2020
CFLAGS = -O2
2121
LDFLAGS =
2222

23-
VERSION = 1.2.1
23+
VERSION = 1.3.0
2424

2525
#Compilation flags
2626
LTM_CFLAGS = -I. $(CFLAGS)

makefile_include.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
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

1010
PLATFORM := $(shell uname | sed -e 's/_.*//')
1111

0 commit comments

Comments
 (0)