From 70bb56ef31189120d62edcf3dc9cabfc169e7c41 Mon Sep 17 00:00:00 2001 From: Jun Luo <4catcode@gmail.com> Date: Sun, 19 Jun 2022 13:13:02 +0800 Subject: [PATCH] release: 0.2.0 --- CHANGELOG.rst | 2 +- Cargo.lock | 6 +++--- Cargo.toml | 2 +- docs/requirements.txt | 2 +- fastcrc/__info__.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 62bedb4..853a333 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,7 +4,7 @@ Change Log This document records all notable changes to `fastcrc `_. -0.2.0b0 (June 19, 2022) +0.2.0 (June 19, 2022) --------------------- * Add initial value optional parameter to all CRC functions. (`#1 `_) diff --git a/Cargo.lock b/Cargo.lock index ab5c09f..df6f750 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -47,7 +47,7 @@ dependencies = [ [[package]] name = "fastcrc" -version = "0.2.0-beta.0" +version = "0.2.0" dependencies = [ "crc", "paste 1.0.7", @@ -271,9 +271,9 @@ checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" [[package]] name = "syn" -version = "1.0.97" +version = "1.0.98" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233d6785e2e6b8442eb26736eaef8c8f0ce0e575c1457d06c3f2812f9cb4c8a0" +checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 3dceb11..39c87a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastcrc" -version = "0.2.0-beta.0" +version = "0.2.0" authors = ["overcat <4catcode@gmail.com>"] edition = "2018" description = "A hyper-fast Python module for computing CRC(16, 32, 64) checksum" diff --git a/docs/requirements.txt b/docs/requirements.txt index 4b4b191..b608a07 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,2 @@ -fastcrc==0.1.1 +fastcrc==0.2.0 sphinx \ No newline at end of file diff --git a/fastcrc/__info__.py b/fastcrc/__info__.py index 2ec9711..ae84619 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.2.0b0" +__version__ = "0.2.0" __author__ = "overcat" __author_email__ = "4catcode@gmail.com" __license__ = "MIT License"