-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
fastcrc==0.1.0 | ||
fastcrc==0.1.1 | ||
sphinx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" |