From a140a468fa1f7619f94ad2551f9c14e684ee3a34 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Tue, 9 May 2023 15:39:50 -0400 Subject: [PATCH] Add release notes for v0.3.5 --- README.md | 2 +- docs/release-notes/v0.3.md | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) 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))