diff --git a/README.md b/README.md index 0ff5220a5..b4d5877ef 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Import the `galois` package in Python. In [1]: import galois In [2]: galois.__version__ -Out[2]: '0.3.6' +Out[2]: '0.3.7' ``` ### Create a [`FieldArray`](https://mhostetter.github.io/galois/latest/api/galois.FieldArray/) subclass diff --git a/docs/release-notes/v0.3.md b/docs/release-notes/v0.3.md index a1e64c2c7..d26a4a597 100644 --- a/docs/release-notes/v0.3.md +++ b/docs/release-notes/v0.3.md @@ -262,3 +262,19 @@ tocdepth: 2 - Iyán Méndez Veiga ([@iyanmv](https://github.com/iyanmv)) - [@Lasagnenator](https://github.com/Lasagnenator) - Matt Hostetter ([@mhostetter](https://github.com/mhostetter)) + +## v0.3.7 + +*Released November 30, 2023* + +### Changes + +- Added wheel factorization for finding large primes. ([#527](https://github.com/mhostetter/galois/pull/527)) +- Improved type annotations. ([#510](https://github.com/mhostetter/galois/pull/510), [#511](https://github.com/mhostetter/galois/pull/511)) +- Removed optional `[dev]` extra. If developing, install from `requirements-dev.txt`. ([#521](https://github.com/mhostetter/galois/pull/521)) +- Fixed bugs in `prev_prime()` and `next_prime()` for large primes. ([#527](https://github.com/mhostetter/galois/pull/527)) + +### Contributors + +- [@avadov](https://github.com/avadov) +- Matt Hostetter ([@mhostetter](https://github.com/mhostetter))