diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..945fb9b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + + + +## v0.2.6 (2021-07-21) +### Fix +* **cli:** Return exit code for unprocessed ([`50df1dc`](https://github.com/guilatrova/tryceratops/commit/50df1dcb3f671062a76b280c994672a2313b9d38)) + +### Documentation +* Remove trailing whitespaces ([`983f8bf`](https://github.com/guilatrova/tryceratops/commit/983f8bf6aa8f96284a9a0e5f991a000a78b0753d)) +* Add badges to README ([`8b7a140`](https://github.com/guilatrova/tryceratops/commit/8b7a140a45dbfee832e1b89a90c59d6a4abd3c44)) +* Update CONTRIBUTING with automation ([`e2b40f6`](https://github.com/guilatrova/tryceratops/commit/e2b40f6099a22c879d85548bafc15bc89468824d)) +* Add contributing ([`70bfa7d`](https://github.com/guilatrova/tryceratops/commit/70bfa7d403a833e3e575931938f4fd24028def52)) +* Add extra resources section ([`07821cb`](https://github.com/guilatrova/tryceratops/commit/07821cb70a23de9e602929cab42d62aeef214383)) +* Add the badge to the project ([`d31ac07`](https://github.com/guilatrova/tryceratops/commit/d31ac071e11370d20982538a0256ff4c984f5902)) +* Add support badge ([`3b61817`](https://github.com/guilatrova/tryceratops/commit/3b618173cd8b5996a74e3ffc6c9833e53e504172)) +* Add open on vscode badge ([`381877d`](https://github.com/guilatrova/tryceratops/commit/381877d1b34ed8f63da611ad4b6f0774d1ad65c0)) diff --git a/README.md b/README.md index ce93a39..b780cd8 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ If you wish to use pre-commit, add this: ```yaml - repo: https://github.com/guilatrova/tryceratops - rev: v0.2.5 + rev: v0.2.6 hooks: - id: tryceratops ``` diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 6698879..b37b508 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.2.5 +tryceratops, version 0.2.6 ``` ## Testing diff --git a/pyproject.toml b/pyproject.toml index d12b804..780db1b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tryceratops" -version = "0.2.5" +version = "0.2.6" 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 8428921..d70a9af 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.2.5" +__version__ = "0.2.6"