From e22c7f38c64f4f7aca0d99813d688a8be6ac7984 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 18 May 2023 08:28:24 +0000 Subject: [PATCH] 2.1.1 Automatically generated by python-semantic-release --- CHANGELOG.md | 7 +++++++ README.md | 2 +- docs/CONTRIBUTING.md | 2 +- pyproject.toml | 2 +- src/tryceratops/__init__.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 981e080..a2f7f95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v2.1.1 (2023-05-18) +### Fix +* Wrong reference to 302 instead of 203 ([`8826ded`](https://github.com/guilatrova/tryceratops/commit/8826ded502e230aee4c0cfe92c709feb9f431a19)) + +### Documentation +* Add info about TRY302 ([`8e739b0`](https://github.com/guilatrova/tryceratops/commit/8e739b0e8e5e2b80ad5c62ea8dd79900f4ac6d8a)) + ## v2.1.0 (2023-05-13) ### Feature * Useless try-except ([`f7a56dd`](https://github.com/guilatrova/tryceratops/commit/f7a56dd337acda060aa643c80f20b2e780ad2fa2)) diff --git a/README.md b/README.md index 38fa0c6..5814b22 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ If you wish to use pre-commit, add this: ```yaml - repo: https://github.com/guilatrova/tryceratops - rev: v2.1.0 + rev: v2.1.1 hooks: - id: tryceratops ``` diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 34fc402..7e3735f 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.0 +tryceratops, version 2.1.1 ``` ## Testing diff --git a/pyproject.toml b/pyproject.toml index ecfe9a5..7ed879c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tryceratops" -version = "2.1.0" +version = "2.1.1" description = "Prevent Exception Handling AntiPatterns" authors = ["Guilherme Latrova "] license = "MIT" diff --git a/src/tryceratops/__init__.py b/src/tryceratops/__init__.py index 721d884..6e3e75e 100644 --- a/src/tryceratops/__init__.py +++ b/src/tryceratops/__init__.py @@ -1,3 +1,3 @@ """Prevent Exception Handling AntiPatterns""" -__version__ = "2.1.0" +__version__ = "2.1.1"