update docs; call this 2.22.1

This commit is contained in:
fredrik 2022-01-25 13:07:17 +01:00
parent ffb8e3b241
commit b401d7cc34
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 22
#define __ARB_VERSION_PATCHLEVEL 0
#define ARB_VERSION "2.22.0"
#define __ARB_VERSION_PATCHLEVEL 1
#define ARB_VERSION "2.22.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.22.0";
const char * arb_version = "2.22.1";

2
configure vendored
View file

@ -11,7 +11,7 @@
# 2.7.0 => 0.0.0
ARB_MAJOR=2
ARB_MINOR=13
ARB_PATCH=0
ARB_PATCH=1
PREFIX="/usr/local"
GMP_DIR="/usr/local"

View file

@ -36,6 +36,14 @@ Old versions of the documentation
* http://arblib.org/arb-2.4.0.pdf
* http://arblib.org/arb-2.3.0.pdf
2022-01-25 -- version 2.22.1
-------------------------------------------------------------------------------
* Fixed bugs causing some hypergeometric functions hang or crash for
some input on various non-x86 architectures.
* Fixed a minor bug in acb_hypgeom_m (NaN result sometimes only set the
real part to NaN).
2022-01-15 -- version 2.22.0
-------------------------------------------------------------------------------