diff --git a/CHANGELOG.md b/CHANGELOG.md index 30bbcca..8ea0284 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v0.5.0 (2023-10-18) + +### Feature + +* Build wheel for latest cpython release ([#8](https://github.com/bdraco/fnv-hash-fast/issues/8)) ([`5bda2cb`](https://github.com/bdraco/fnv-hash-fast/commit/5bda2cbccd2bdb01ca61f885e2b1f6b3f39ca4c6)) + +### Fix + +* Reduce size of wheels by excluding generated .cpp files ([#9](https://github.com/bdraco/fnv-hash-fast/issues/9)) ([`efc8960`](https://github.com/bdraco/fnv-hash-fast/commit/efc896027b7b7d4e6b8d41c4f4c5deb0f5128405)) + ## v0.4.1 (2023-08-27) ### Fix diff --git a/pyproject.toml b/pyproject.toml index ad62a80..b3561fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fnv-hash-fast" -version = "0.4.1" +version = "0.5.0" description = "A fast version of fnv1a" authors = ["J. Nick Koston "] license = "MIT" diff --git a/src/fnv_hash_fast/__init__.py b/src/fnv_hash_fast/__init__.py index 92c2932..b659d8f 100644 --- a/src/fnv_hash_fast/__init__.py +++ b/src/fnv_hash_fast/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.1" +__version__ = "0.5.0" from .fnv_impl import fnv1a_32