From c17c3ff69647e5a510fbc741ebffcf07c7e6fe63 Mon Sep 17 00:00:00 2001 From: Rodrigo Tobar Date: Mon, 1 Jul 2024 00:21:03 +0800 Subject: [PATCH] Release crc32c 2.4.1 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 697dbf3..a4e426c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.4.1] + +* Fixed failure on big-endian, signed ``char`` platforms + (found in SPARC, but there might be more) + due to an incorrect (and unnecessary) cast + from ``unsigned char *`` to ``char *`` (#43). + ## [2.4] * Changed package compilation under gcc/clang @@ -148,3 +155,4 @@ [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 +[2.4.1]: https://github.com/ICRAR/crc32c/releases/tag/v2.4.1 diff --git a/setup.py b/setup.py index 95fc253..15b67c2 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.4', + version='2.4.1', license="LGPL-2.1-or-later", description=('A python package implementing the crc32c algorithm' ' in hardware and software'),