diff --git a/CHANGELOG.md b/CHANGELOG.md index 61e6b16..e8c14c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v0.5.0 (2021-07-31) +### Feature +* **analyzers:** Add analyzer log exception object ([`b7385da`](https://github.com/guilatrova/tryceratops/commit/b7385da16ff68fa5320a86adf02ebd03efeb1c22)) +* **analyzers:** Add analyzer for log error ([`4c755e5`](https://github.com/guilatrova/tryceratops/commit/4c755e54d7f324eb3e5937cd501bb09e9493fae3)) + +### Documentation +* Add sample for TC401 (logging w/o object) ([`875ce09`](https://github.com/guilatrova/tryceratops/commit/875ce09f5efbaccdd555ffe4bd3cdb4ab6c38b4b)) +* Add sample for TC400 (logging.exception) ([`a74d97b`](https://github.com/guilatrova/tryceratops/commit/a74d97be73bb1e12e50d2bb3721a0169c0a40ade)) + ## v0.4.0 (2021-07-30) ### Feature * Add verbose flag ([`95a34b6`](https://github.com/guilatrova/tryceratops/commit/95a34b643ad71c392d419006607ba4d3cbb68375)) diff --git a/README.md b/README.md index 2c0853e..ad17d1c 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ If you wish to use pre-commit, add this: ```yaml - repo: https://github.com/guilatrova/tryceratops - rev: v0.4.0 + rev: v0.5.0 hooks: - id: tryceratops ``` diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 0d2ebd1..79358dd 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -25,7 +25,7 @@ and you should be ready to go! ```sh ❯ poetry run tryceratops --version -tryceratops, version 0.4.0 +tryceratops, version 0.5.0 ``` ## Testing diff --git a/pyproject.toml b/pyproject.toml index 6433489..0e84efe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tryceratops" -version = "0.4.0" +version = "0.5.0" description = "A linter to manage your exception like a PRO!" authors = ["Guilherme Latrova "] license = "MIT" diff --git a/src/tryceratops/__init__.py b/src/tryceratops/__init__.py index b03edc5..0ce5d17 100644 --- a/src/tryceratops/__init__.py +++ b/src/tryceratops/__init__.py @@ -1,3 +1,3 @@ """A linter to manage your exception like a PRO!""" -__version__ = "0.4.0" +__version__ = "0.5.0"