diff --git a/CHANGELOG.md b/CHANGELOG.md index 028356f..207fcea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.1] - 2022-10-04 + +### Fixed + +- Fix `cattrs`'s breaking changes ([#59](https://github.com/ducminh-phan/reformat-gherkin/issues/59)) + ## [3.0.0] - 2022-07-16 ### Changed @@ -99,7 +105,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[unreleased]: https://github.com/ducminh-phan/reformat-gherkin/compare/v3.0.0...develop +[unreleased]: https://github.com/ducminh-phan/reformat-gherkin/compare/v3.0.1...develop +[3.0.1]: https://github.com/ducminh-phan/reformat-gherkin/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/ducminh-phan/reformat-gherkin/compare/v2.2.1...v3.0.0 [2.2.1]: https://github.com/ducminh-phan/reformat-gherkin/compare/v2.2.0...v2.2.1 [2.2.0]: https://github.com/ducminh-phan/reformat-gherkin/compare/v2.1.1...v2.2.0 diff --git a/pyproject.toml b/pyproject.toml index 16b0e99..f10ff93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "reformat-gherkin" -version = "3.0.0" +version = "3.0.1" description = "Formatter for Gherkin language" readme = "README.md" authors = ["Duc-Minh Phan "] diff --git a/reformat_gherkin/version.py b/reformat_gherkin/version.py index 528787c..0552768 100644 --- a/reformat_gherkin/version.py +++ b/reformat_gherkin/version.py @@ -1 +1 @@ -__version__ = "3.0.0" +__version__ = "3.0.1"