Skip to content

Commit

Permalink
upped version to 20210503
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnCremona committed May 3, 2021
1 parent c89da5f commit a02215e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ script:
- make
- |
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
make -k check;
make check;
else
make check;
fi
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ AC_PREREQ([2.65])
# The version is the concatenation of 'v' and the year, month, date: vyyyymmdd
# To access this as a string or integer triple, see libsrc/eclib/version.h

AC_INIT([eclib], [20210415], [[email protected]])
AC_INIT([eclib], [20210503], [[email protected]])

AM_INIT_AUTOMAKE([-Wall])
AC_MSG_NOTICE([Configuring eclib...])
Expand Down Expand Up @@ -41,7 +41,7 @@ LT_INIT
# NB The suffix of the library name (libec.so here) is (c-a).a.r

LT_CURRENT=8
LT_REVISION=2
LT_REVISION=3
LT_AGE=1
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
Expand Down
12 changes: 6 additions & 6 deletions tests/out_no_ntl/tversion.out
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
This eclib version is 20210415
[ year month day ] = [ 2021 4 15 ]
This eclib version is 20210503
[ year month day ] = [ 2021 5 3 ]

Configure options and compilation date:

eclib version 20210415, using NTL bigints but no multiprecision floating point
eclib version 20210503, using NTL bigints but no multiprecision floating point

Testing comparison of version date and various (year, month, day) date triples:

Date 20200101 is before the version date 20210415
Date 20300611 is after the version date 20210415
Date 20210317 is before the version date 20210415
Date 20200101 is before the version date 20210503
Date 20300611 is after the version date 20210503
Date 20210317 is before the version date 20210503
12 changes: 6 additions & 6 deletions tests/out_ntl/tversion.out
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
This eclib version is 20210415
[ year month day ] = [ 2021 4 15 ]
This eclib version is 20210503
[ year month day ] = [ 2021 5 3 ]

Configure options and compilation date:

eclib version 20210415, using NTL bigints and NTL real and complex multiprecision floating point
eclib version 20210503, using NTL bigints and NTL real and complex multiprecision floating point

Testing comparison of version date and various (year, month, day) date triples:

Date 20200101 is before the version date 20210415
Date 20300611 is after the version date 20210415
Date 20210317 is before the version date 20210415
Date 20200101 is before the version date 20210503
Date 20300611 is after the version date 20210503
Date 20210317 is before the version date 20210503

0 comments on commit a02215e

Please sign in to comment.