Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Change Log

This document records all notable changes to `fastcrc <https://github.com/overcat/fastcrc/>`_.

0.3.5 (January 01, 2026)
------------------------
* feat: add `riscv64gc-unknown-linux-gnu` build target. (`#27 <https://github.com/overcat/fastcrc/pull/27>`_)

0.3.4 (October 26, 2025)
------------------------
* chore: mark module as gil-free. (`#17 <https://github.com/overcat/fastcrc/pull/17>`_)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion fastcrc/__info__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down