From 99e91d982cc6064661c627255b7b6fd512df2724 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Sun, 1 Oct 2023 16:11:26 -0400 Subject: [PATCH] Add release notes for v0.3.6 --- README.md | 2 +- docs/release-notes/v0.3.md | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 651e2de89..92d6b8101 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.5' +Out[2]: '0.3.6' ``` ### 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 bf06ff475..c1f9c93da 100644 --- a/docs/release-notes/v0.3.md +++ b/docs/release-notes/v0.3.md @@ -245,3 +245,20 @@ tocdepth: 2 ### Contributors - Matt Hostetter ([@mhostetter](https://github.com/mhostetter)) + +## v0.3.6 + +*Released October 1, 2023* + +### Changes + +- Added support for NumPy 1.25. ([#507](https://github.com/mhostetter/galois/pull/507)) +- Added support for Numba 0.58. ([#507](https://github.com/mhostetter/galois/pull/507)) +- Fixed rare overflow with computing a large modular exponentiation of polynomials. ([#488](https://github.com/mhostetter/galois/pull/488)) +- Resolved various deprecations warnings with NumPy 1.25. ([#492](https://github.com/mhostetter/galois/pull/492)) + +### Contributors + +- Iyán Méndez Veiga ([@iyanmv](https://github.com/iyanmv)) +- [@Lasagnenator](https://github.com/Lasagnenator) +- Matt Hostetter ([@mhostetter](https://github.com/mhostetter))