diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ae8e60d..e707287 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,10 @@ Change Log This document records all notable changes to `fastcrc `_. +0.3.5 (January 01, 2026) +------------------------ +* feat: add `riscv64gc-unknown-linux-gnu` build target. (`#27 `_) + 0.3.4 (October 26, 2025) ------------------------ * chore: mark module as gil-free. (`#17 `_) diff --git a/Cargo.lock b/Cargo.lock index 7256ac7..c8b06df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,7 +25,7 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" [[package]] name = "fastcrc" -version = "0.3.4" +version = "0.3.5" dependencies = [ "crc", "paste", diff --git a/Cargo.toml b/Cargo.toml index 170a76b..3bb2344 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastcrc" -version = "0.3.4" +version = "0.3.5" authors = ["overcat <4catcode@gmail.com>"] edition = "2021" description = "A hyper-fast Python module for computing CRC(8, 16, 32, 64) checksum" diff --git a/fastcrc/__info__.py b/fastcrc/__info__.py index e90def7..55e364e 100644 --- a/fastcrc/__info__.py +++ b/fastcrc/__info__.py @@ -2,7 +2,7 @@ __description__ = "A hyper-fast Python module for computing CRC(16, 32, 64) checksum" __url__ = "https://github.com/overcat/fastcrc" __issues__ = f"{__url__}/issues" -__version__ = "0.3.4" +__version__ = "0.3.5" __author__ = "overcat" __author_email__ = "4catcode@gmail.com" __license__ = "MIT License" diff --git a/pyproject.toml b/pyproject.toml index d305f90..86fc4a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fastcrc" -version = "0.3.4" +version = "0.3.5" requires-python = ">=3.7" readme = "README.rst" description = "A hyper-fast Python module for computing CRC(8, 16, 32, 64) checksum"