From 62ce05558505b555ecc7737861e63d7e7e52e8ce Mon Sep 17 00:00:00 2001 From: Rodrigo Tobar Date: Wed, 28 Feb 2024 12:14:32 +0800 Subject: [PATCH] Release crc32c 2.4 Signed-off-by: Rodrigo Tobar --- CHANGELOG.md | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f17c01d..697dbf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.4] + +* Changed package compilation under gcc/clang + to use compiler extensions to build hardware-specific functions + instead of command-line options + for improved portability (#31). + ## [2.3.post0] * Mention explicit support for Python 3.11. @@ -140,3 +147,4 @@ [2.2.post0]: https://github.com/ICRAR/crc32c/releases/tag/v2.2.post0 [2.3]: https://github.com/ICRAR/crc32c/releases/tag/v2.3 [2.3.post0]: https://github.com/ICRAR/crc32c/releases/tag/v2.3.post0 +[2.4]: https://github.com/ICRAR/crc32c/releases/tag/v2.4 diff --git a/setup.py b/setup.py index f0cf8e7..95fc253 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ author='The ICRAR DIA Team', url='https://github.com/ICRAR/crc32c', author_email='rtobar@icrar.org', - version='2.3.post0', + version='2.4', license="LGPL-2.1-or-later", description=('A python package implementing the crc32c algorithm' ' in hardware and software'),