Skip to content

Commit 832dd08

Browse files
committed
Update version & changelog
Signed-off-by: Steffen Jaeckel <s@jaeckel.eu>
1 parent c73362d commit 832dd08

6 files changed

Lines changed: 13 additions & 7 deletions

File tree

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.1
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 14th, 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
@@ -50,7 +50,7 @@
5050
\begin{document}
5151
\frontmatter
5252
\pagestyle{empty}
53-
\title{LibTomMath User Manual \\ v1.2.1}
53+
\title{LibTomMath User Manual \\ v1.3.0}
5454
\author{LibTom Projects \\ www.libtom.net}
5555
\maketitle
5656
This text, the library and the accompanying textbook are all hereby placed in the public domain. This book has been

makefile.unix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RANLIB = ranlib
2121
CFLAGS = -O2
2222
LDFLAGS =
2323

24-
VERSION = 1.2.1
24+
VERSION = 1.3.0
2525

2626
#Compilation flags
2727
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-rc1
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)