From e3a633dcc1adafeb7ca9648669f2b1fa2f433ee1 Mon Sep 17 00:00:00 2001 From: fredrik Date: Wed, 20 Oct 2021 11:47:48 +0200 Subject: [PATCH] update docs; call this 2.21.1 --- arb.h | 4 ++-- arb/version.c | 2 +- configure | 2 +- doc/source/history.rst | 8 ++++++++ 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/arb.h b/arb.h index 7752035a..a46be277 100644 --- a/arb.h +++ b/arb.h @@ -28,8 +28,8 @@ extern "C" { #define __ARB_VERSION 2 #define __ARB_VERSION_MINOR 21 -#define __ARB_VERSION_PATCHLEVEL 0 -#define ARB_VERSION "2.21.0" +#define __ARB_VERSION_PATCHLEVEL 1 +#define ARB_VERSION "2.21.1" #define __ARB_RELEASE (__ARB_VERSION * 10000 + \ __ARB_VERSION_MINOR * 100 + \ __ARB_VERSION_PATCHLEVEL) diff --git a/arb/version.c b/arb/version.c index ddcff31a..4ec8be99 100644 --- a/arb/version.c +++ b/arb/version.c @@ -11,4 +11,4 @@ #include "arb.h" -const char * arb_version = "2.21.0"; +const char * arb_version = "2.21.1"; diff --git a/configure b/configure index 7b2953c9..eee07bd1 100755 --- a/configure +++ b/configure @@ -11,7 +11,7 @@ # 2.7.0 => 0.0.0 ARB_MAJOR=2 ARB_MINOR=12 -ARB_PATCH=0 +ARB_PATCH=1 PREFIX="/usr/local" GMP_DIR="/usr/local" diff --git a/doc/source/history.rst b/doc/source/history.rst index 7a745b92..16bec121 100644 --- a/doc/source/history.rst +++ b/doc/source/history.rst @@ -35,6 +35,14 @@ Old versions of the documentation * http://arblib.org/arb-2.4.0.pdf * http://arblib.org/arb-2.3.0.pdf +2021-10-20 -- version 2.21.1 +------------------------------------------------------------------------------- + +* Fixed 32-bit test failures for arb_hypgeom_gamma_fmpq. +* Added pow function to the fpwrap module. +* Added missing header file includes. +* Do not encode the library version in the SONAME on Android (contributed by Andreas Enge). + 2021-09-25 -- version 2.21.0 -------------------------------------------------------------------------------