Skip to content

Commit

Permalink
release: 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed May 23, 2021
1 parent 6e486ee commit 3dcb04f
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
==========
Change Log
==========

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

0.1.1 (May 23, 2021)
---------------------
* Correct the project information.

0.1.0 (May 23, 2021)
---------------------
* First release.
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.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fastcrc"
version = "0.1.0"
version = "0.1.1"
authors = ["overcat <[email protected]>"]
edition = "2018"
description = "A hyper-fast Python module for computing CRC(16, 32, 64) checksum"
license = "MIT License"
repository = "https://github.com/overcat/fastcrc"
homepage = "https://github.com/overcat/fastcrc"
readme = "README.md"
readme = "README.rst"
keywords = ["crc", "crc16", "crc32", "crc64"]

[lib]
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include Cargo.toml
include Cargo.lock
include README.md
include README.rst
include LICENSE
recursive-include src *
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
fastcrc==0.1.0
fastcrc==0.1.1
sphinx
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.1.0"
__version__ = "0.1.1"
__author__ = "overcat"
__author_email__ = "[email protected]"
__license__ = "MIT License"

0 comments on commit 3dcb04f

Please sign in to comment.