Skip to content

Commit

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

In [2]: galois.__version__
Out[2]: '0.1.0'
Out[2]: '0.1.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 @@ -140,6 +140,7 @@ If this library was useful to you in your research, please cite us. Following th
:hidden:

release-notes/versioning.rst
release-notes/v0.1.1.md
release-notes/v0.1.0.md
release-notes/v0.0.33.md
release-notes/v0.0.32.md
Expand Down
19 changes: 19 additions & 0 deletions docs/release-notes/v0.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# v0.1.1

*Released September 2, 2022*

## Changes

- Added support for NumPy 1.23. ([#414](https://github.com/mhostetter/galois/pull/414))
- Added `seed` keyword argument to `random_prime()`. ([#409](https://github.com/mhostetter/galois/pull/409))
```python
>>> galois.random_prime(100, seed=1)
2218840874040723579228056294021
>>> galois.random_prime(100, seed=1)
2218840874040723579228056294021
```
- Deployed documentation to [https://mhostetter.github.io/galois/latest/](https://mhostetter.github.io/galois/latest/) with GitHub Pages. ([#408](https://github.com/mhostetter/galois/pull/408))

## Contributors

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

0 comments on commit 1b87674

Please sign in to comment.