Skip to content

Commit

Permalink
Merge tag 'v1.3.0' into develop
Browse files Browse the repository at this point in the history
v1.3.0
  • Loading branch information
sjaeckel committed Mar 27, 2024
2 parents 138309c + 95d80fd commit b57b2cd
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
cmake_minimum_required(VERSION 3.10)

project(libtommath
VERSION 1.2.0
VERSION 1.3.0
DESCRIPTION "A free open source portable number theoretic multiple-precision integer (MPI) library written entirely in C."
HOMEPAGE_URL "https://www.libtom.net/LibTomMath"
LANGUAGES C)
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.2.1-{build}
version: 1.3.0-{build}
branches:
only:
- master
Expand Down
6 changes: 6 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Mar 27th, 2024
v1.3.0
-- Deprecate more APIs which are replaced in develop (PR #572)
-- Add support for CMake (PR #573)
-- Add support for GitHub Actions (PR #573)

Sep 04th, 2023
v1.2.1
-- Bugfix release because of potential integer overflow
Expand Down
2 changes: 1 addition & 1 deletion doc/bn.tex
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
\begin{document}
\frontmatter
\pagestyle{empty}
\title{LibTomMath User Manual \\ v1.2.1}
\title{LibTomMath User Manual \\ v1.3.0}
\author{LibTom Projects \\ www.libtom.net}
\maketitle
This text, the library and the accompanying textbook are all hereby placed in the public domain.
Expand Down
6 changes: 5 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,12 @@ cmp: profiled_single
./timing
$(MAKE) -C logs/ cmp

zipup:
$(MAKE) clean
$(MAKE) .zipup

TODAY=$(shell date -I)
zipup: clean astyle new_file docs
.zipup: astyle new_file docs
@# Update the index, so diff-index won't fail in case the pdf has been created.
@# As the pdf creation modifies the tex files, git sometimes detects the
@# modified files, but misses that it's put back to its original version.
Expand Down
2 changes: 1 addition & 1 deletion makefile.unix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ARFLAGS = rcs
CFLAGS = -O2
LDFLAGS =

VERSION = 1.2.1
VERSION = 1.3.0

#Compilation flags
LTM_CFLAGS = -I. $(CFLAGS)
Expand Down
6 changes: 3 additions & 3 deletions makefile_include.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#

#version of library
VERSION=1.2.1-develop
VERSION_PC=1.2.1
VERSION_SO=3:1:2
VERSION=1.3.0
VERSION_PC=1.3.0
VERSION_SO=4:0:3

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

Expand Down

0 comments on commit b57b2cd

Please sign in to comment.