diff --git a/CHANGELOG.md b/CHANGELOG.md index ae3dfae..002ffc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Development +## [2.5] + * Made this package PEP 561 compliant (#49). * Release GIL during the computation of the CRC32C hash. A new `gil_release_mode` argument lets users choose between always/never/automatically releasing it (#47). * Add keyword support to `crc32c` function (`crc32c(data, value=0, gil_release_mode=-1)`). @@ -170,3 +172,4 @@ [2.3.post0]: https://github.com/ICRAR/crc32c/releases/tag/v2.3.post0 [2.4]: https://github.com/ICRAR/crc32c/releases/tag/v2.4 [2.4.1]: https://github.com/ICRAR/crc32c/releases/tag/v2.4.1 +[2.5]: https://github.com/ICRAR/crc32c/releases/tag/v2.5 diff --git a/setup.py b/setup.py index ab8c72e..7ec6c94 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ author='The ICRAR DIA Team', url='https://github.com/ICRAR/crc32c', author_email='rtobar@icrar.org', - version='2.4.1', + version='2.5', license="LGPL-2.1-or-later", description=('A python package implementing the crc32c algorithm' ' in hardware and software'),