Skip to content

Commit

Permalink
Bumping to 0.4.0 and updating CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
GardenTools committed Apr 16, 2023
1 parent 56a31ed commit 31a6350
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
=======
History
=======
0.4
------------------
* Feature: Introduction of CrcParams type to parametrize CRC implementation functions.
* Feature: Addition of "window" CRC calculation accepting bit start and end positions
* Bugfix: Fix CRC polynomials under 8 bits wide resulting in an invalid shift and resulting Exception
* Deprecation: passing separate polynomial with and seed is deprecated, passing CrcParams should be used instead.
* Switch to using poetry for packaging instead of setuptools.

0.3.3 (2022-06-26)
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.4.a2'
release = '0.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,9 @@ build-backend = "poetry.core.masonry.api"
#requires = ["setuptools", "wheel"]
#build-backend = "setuptools.build_meta"

[tool.isort]
profile = "black"
multi_line_output = 3

[tool.poetry]
name = "crcengine"
version = "0.4a2"
version = "0.4.0"
description = "A library for CRC calculation and code generation"
authors = [ "Garden Tools <[email protected]>"]
license = "GPL-3.0-only"
Expand Down Expand Up @@ -51,3 +47,7 @@ sphinx = "^5.0"

[tool.poetry.scripts]
crcengine = "crcengine.__main__:main"

[tool.isort]
profile = "black"
multi_line_output = 3

0 comments on commit 31a6350

Please sign in to comment.