diff --git a/docs/history.rst b/docs/history.rst index 5d7bfd4f..f697bd07 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -6,7 +6,23 @@ Release Notes Changes in gmpy2 2.2.0 ------------------------ -* Added prev_prime() when GMP >= 6.3 +* Remove support for versions of Python < 3.7. (skirpichev) +* Support more modern build tools. (skirpichev) +* Use contextvars to manage gmpy2 contexts. (casevh) +* _mpmath functions now use vectorcall protocol. (casevh) +* Many documentation updates. (skirpichev) +* Add :meth:`mpz.as_integer_ratio()` / :meth:`mpz.to_bytes()` and + :meth:`mpz.from_bytes()`. (skirpichev) +* Add :func:`is_probab_prime()` to directly expose the GMP + behavior. (skirpichev) +* :func:`gcd()`/:func:`lcm()` now uses vectorcall protocol. (skirpichev) +* Expose :class:`context` type. (skirpichev) +* Correct error in :func:`is_strong_bpsw_prp()`. (casevh) +* Added :func:`prev_prime()` when GMP >= 6.3. (sethtroisi) +* Change argument order of :func:`jn()` and :func:`yn()` to match + MPFR. (casevh) +* Fix documentation and code for + :func:`is_extra_strong_lucas_prp()`. (casevh) Changes in gmpy2 2.1.5 ---------------------- diff --git a/src/gmpy2.c b/src/gmpy2.c index 90e0fbab..399f3815 100644 --- a/src/gmpy2.c +++ b/src/gmpy2.c @@ -56,27 +56,6 @@ * ************************************************************************ * - * 2.2.0a1 - * Remove support for versions of Python < 3.7. () (skirpichev) - * Support more modern build tools. (skirpichev) - * Use contextvars to manage gmpy2 contexts. (casevh) - * _mpmath functions now use vectorcall protocol. (casevh) - * Many documentation updates. (skirpichev) - * Add mpz.as_integer_ratio()/to_bytes()/from_bytes(). (skirpichev) - * Add mpz_probab_prime_p() to directly expose the GMP behavior. - * (skirpichev) - * gcd()/lcm() now uses vectorcall protocol. (skirpichev) - * Expose context type. (skirpichev) - * Correct error in is_strong_bpsw_prp. (casevh) - * Added prev_prime if GMP version is >=6.3.0 (sethtroisi) - * - * 2.2.0a2 - * Change argument order of jn() and yn() to match MPFR. (casevh) - * Fix documentation and code for is_extra_strong_lucas_prp. (casevh) - * - * - ************************************************************************ - * * Discussion on sizes of C integer types. * * GMP, MPFR, and MPC use typedef to create integer objects with