diff --git a/CHANGELOG.md b/CHANGELOG.md index 54081d3..1b7f2ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.3.0 (2023-05-20) +### Feature +* Implement TRY006 ([`9635950`](https://github.com/guilatrova/tryceratops/commit/96359503b41b67265c5787869b277140a28233f8)) + ## v2.2.0 (2023-05-20) ### Feature * Implement new TRY005 violation ([`5b65dc3`](https://github.com/guilatrova/tryceratops/commit/5b65dc3c139186e0d3df6945533864f07bcc3874)) diff --git a/README.md b/README.md index f913612..99fb35d 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ If you wish to use pre-commit, add this: ```yaml - repo: https://github.com/guilatrova/tryceratops - rev: v2.2.0 + rev: v2.3.0 hooks: - id: tryceratops ``` diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 6c41cfc..fc1124b 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -26,7 +26,7 @@ and you should be ready to go! ```sh ❯ poetry run tryceratops --version -tryceratops, version 2.2.0 +tryceratops, version 2.3.0 ``` ## Testing diff --git a/pyproject.toml b/pyproject.toml index 1f333d7..7fea130 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tryceratops" -version = "2.2.0" +version = "2.3.0" description = "Prevent Exception Handling AntiPatterns" authors = ["Guilherme Latrova "] license = "MIT" diff --git a/src/tryceratops/__init__.py b/src/tryceratops/__init__.py index 3a77bf3..120f4cc 100644 --- a/src/tryceratops/__init__.py +++ b/src/tryceratops/__init__.py @@ -1,3 +1,3 @@ """Prevent Exception Handling AntiPatterns""" -__version__ = "2.2.0" +__version__ = "2.3.0"