diff --git a/README.md b/README.md index 7ffd04e84..651e2de89 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.4' +Out[2]: '0.3.5' ``` ### 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 8ae78888f..bf06ff475 100644 --- a/docs/release-notes/v0.3.md +++ b/docs/release-notes/v0.3.md @@ -232,3 +232,16 @@ tocdepth: 2 ### Contributors - Matt Hostetter ([@mhostetter](https://github.com/mhostetter)) + +## v0.3.5 + +*Released May 9, 2023* + +### Changes + +- Added `py.typed` file to indicate to `mypy` and other type checkers that `galois` supports typing. ([#481](https://github.com/mhostetter/galois/pull/481)) +- Fixed bug with multiple, concurrent BCH and/or Reed Solomon decoders. ([#484](https://github.com/mhostetter/galois/pull/484)) + +### Contributors + +- Matt Hostetter ([@mhostetter](https://github.com/mhostetter))