Skip to content

Commit

Permalink
Bump version to 2.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
casevh committed Jul 21, 2024
1 parent 66296bd commit 30f6ef6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ gmpy2 adds support for correctly rounded multiple-precision real arithmetic
Version 2.2
-----------

gmpy2 2.2.1
-----------

* Bug fix: use C int instead of C char for some internal code. Issue
* Bug fix: add xmpz.bit_count method.

gmpy2 2.2.0
-----------

gmpy2 2.2.0 is now available with support for Python 3.7 to 3.13.

* Support for thread-safe contexts and context methods has been improved.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'gmpy2'
version = '2.2.1rc1'
version = '2.2.1'
description = 'gmpy2 interface to GMP, MPFR, and MPC for Python 3.7+'
keywords = ['gmp', 'mpfr', 'mpc', 'multiple-precision',
'arbitrary-precision', 'precision', 'bignum']
Expand Down
2 changes: 1 addition & 1 deletion src/gmpy2.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@

/* The following global strings are used by gmpy_misc.c. */

char gmpy_version[] = "2.2.1rc1";
char gmpy_version[] = "2.2.1";

char gmpy_license[] = "\
The GMPY2 source code is licensed under LGPL 3 or later. The supported \
Expand Down

0 comments on commit 30f6ef6

Please sign in to comment.