diff --git a/CHANGELOG.md b/CHANGELOG.md index a2f7f95..54081d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v2.2.0 (2023-05-20) +### Feature +* Implement new TRY005 violation ([`5b65dc3`](https://github.com/guilatrova/tryceratops/commit/5b65dc3c139186e0d3df6945533864f07bcc3874)) + +### Fix +* Build config in the proper order ([`90863ac`](https://github.com/guilatrova/tryceratops/commit/90863ac777ef262a9ef2b2d216c7ae05a7cd2190)) +* Handle potential missing prop ([`ddcb8bb`](https://github.com/guilatrova/tryceratops/commit/ddcb8bbd999688339d64cd1848663aa6456c6df1)) + ## v2.1.1 (2023-05-18) ### Fix * Wrong reference to 302 instead of 203 ([`8826ded`](https://github.com/guilatrova/tryceratops/commit/8826ded502e230aee4c0cfe92c709feb9f431a19)) diff --git a/README.md b/README.md index 4b22013..0b5e641 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ If you wish to use pre-commit, add this: ```yaml - repo: https://github.com/guilatrova/tryceratops - rev: v2.1.1 + rev: v2.2.0 hooks: - id: tryceratops ``` diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 7e3735f..6c41cfc 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.1.1 +tryceratops, version 2.2.0 ``` ## Testing diff --git a/pyproject.toml b/pyproject.toml index bcf51c8..1f333d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tryceratops" -version = "2.1.1" +version = "2.2.0" description = "Prevent Exception Handling AntiPatterns" authors = ["Guilherme Latrova "] license = "MIT" diff --git a/src/tryceratops/__init__.py b/src/tryceratops/__init__.py index 6e3e75e..3a77bf3 100644 --- a/src/tryceratops/__init__.py +++ b/src/tryceratops/__init__.py @@ -1,3 +1,3 @@ """Prevent Exception Handling AntiPatterns""" -__version__ = "2.1.1" +__version__ = "2.2.0"