update docs; call this 2.21.1

This commit is contained in:
fredrik 2021-10-20 11:47:48 +02:00
parent f951da3181
commit e3a633dcc1
4 changed files with 12 additions and 4 deletions

4
arb.h
View file

@ -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)

View file

@ -11,4 +11,4 @@
#include "arb.h"
const char * arb_version = "2.21.0";
const char * arb_version = "2.21.1";

2
configure vendored
View file

@ -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"

View file

@ -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
-------------------------------------------------------------------------------