Skip to content

Commit

Permalink
Add release notes for v0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
mhostetter committed May 19, 2021
1 parent a113001 commit cd812c8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ jobs:
run: |
prev=v${{ steps.previous_version.outputs.version }}
next=v${{ steps.next_version.outputs.version }}
cat CHANGELOG.md > release_notes.md
echo -e "\n## Contributors" >> release_notes.md
echo -e "\n## Contributors" > release_notes.md
git log ${prev}..${next} --pretty="- @%an" | sort | uniq >> release_notes.md
echo -e "\n## Commits" >> release_notes.md
git log --oneline ${prev}..${next} >> release_notes.md
Expand Down
3 changes: 0 additions & 3 deletions CHANGELOG.md

This file was deleted.

14 changes: 14 additions & 0 deletions docs/pages/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Release Notes

## v0.0.16

### Changes

- Add `Field()` alias of `GF()` class factory.
- Add finite groups modulo `n` with `Group()` class factory.
- Add `is_group()`, `is_field()`, `is_prime_field()`, `is_extension_field()`.
- Add polynomial constructor `Poly.String()`.
- Add polynomial factorization in `poly_factors()`.
- Add `np.vdot()` support.
- Fix PyPI packaging issue from v0.0.15.
- Fix bug in creation of 0-degree polynomials.
- Fix bug in `poly_gcd()` not returning monic GCD polynomials.

## v0.0.15

### Breaking Changes
Expand Down

0 comments on commit cd812c8

Please sign in to comment.