Skip to content

Commit ddef44e

Browse files
committed
update changes, bump version, fixup c917f3c
[skip ci]
1 parent 2ef4c9b commit ddef44e

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

changes.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ v1.2.0
2727
-- The custom allocators which were formerly known as XMALLOC(), XFREE() etc. are now available
2828
as MP_MALLOC(), MP_REALLOC(), MP_CALLOC() and MP_FREE(). MP_REALLOC() and MP_FREE() now also
2929
provide the allocated size to ease the usage of simple allocators without tracking.
30+
-- Building is now also possible with MSVC 2015, 2017 and 2019 (use makefile.msvc)
3031
-- Added mp_decr() and mp_incr()
3132
-- Added mp_log_u32()
3233
-- Improved prime-checking
3334
-- Improved Toom-Cook multiplication
35+
-- Removed the LTM book (`make docs` now builds the user manual)
3436

3537

3638
Jan 28th, 2019

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ zipup: clean astyle new_file docs
145145
@echo 'fixme check'
146146
-@(find libtommath-$(VERSION)/ -type f | xargs grep 'FIXM[E]') && echo '############## BEWARE: the "fixme" marker was found !!! ##############' || true
147147
mkdir -p libtommath-$(VERSION)/doc
148-
cp doc/bn.pdf doc/poster.pdf libtommath-$(VERSION)/doc/
148+
cp doc/bn.pdf libtommath-$(VERSION)/doc/
149149
$(MAKE) -C libtommath-$(VERSION)/ pre_gen
150150
tar -c libtommath-$(VERSION)/ | xz -6e -c - > ltm-$(VERSION).tar.xz
151151
zip -9rq ltm-$(VERSION).zip libtommath-$(VERSION)

makefile_include.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
#version of library
6-
VERSION=1.2.0-rc2
6+
VERSION=1.2.0-rc3
77
VERSION_PC=1.2.0
88
VERSION_SO=3:0:2
99

0 commit comments

Comments
 (0)