Skip to content

Commit

Permalink
Add release notes for v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mhostetter committed Dec 12, 2022
1 parent deb4c1e commit 638f0aa
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Import the `galois` package in Python.
In [1]: import galois

In [2]: galois.__version__
Out[2]: '0.3.0'
Out[2]: '0.3.1'
```

### Create a [`FieldArray`](https://mhostetter.github.io/galois/latest/api/galois.FieldArray/) subclass
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ If this library was useful to you in your research, please cite us. Following th
:hidden:

release-notes/versioning.rst
release-notes/v0.3.1.md
release-notes/v0.3.0.md
release-notes/v0.2.0.md
release-notes/v0.1.2.md
Expand Down
25 changes: 25 additions & 0 deletions docs/release-notes/v0.3.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# v0.3.1

*Released December 12, 2022*

## Changes

- Fixed a bug in the Pollard $\rho$ factorization algorithm that caused an occasional infinite loop. ([#450](https://github.com/mhostetter/galois/pull/450))
```ipython
In [1]: import galois
# v0.3.0
In [2]: %time galois.GF(2400610585866217)
# Never returns...
# v0.3.1
In [2]: %time galois.GF(2400610585866217)
Wall time: 96 ms
Out[2]: <class 'galois.GF(2400610585866217)'>
```
- Formatted the code and unit tests with `black` and `isort`. ([#446](https://github.com/mhostetter/galois/pull/446), [#449](https://github.com/mhostetter/galois/pull/449))

## Contributors

- Matt Hostetter ([@mhostetter](https://github.com/mhostetter))
- [@pivis](https://github.com/pivis)

0 comments on commit 638f0aa

Please sign in to comment.