From 4cdb60ae29ae4c543d767ad60af5109027a8cb72 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 21 Jul 2021 21:50:23 +0000 Subject: [PATCH] 0.3.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- docs/CONTRIBUTING.md | 2 +- pyproject.toml | 2 +- src/tryceratops/__init__.py | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 945fb9b..9a779b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v0.3.0 (2021-07-21) +### Feature +* Rename 'notc' tokens to become 'noqa' ([`0a2c1c5`](https://github.com/guilatrova/tryceratops/commit/0a2c1c5a9efe77c94a0080369ce2e18ae3e937b7)) + +### Breaking +* Any previous 'notc' token will stop working. Now you must use 'noqa' instead, which keeps consistent with flake8 standards ([`0a2c1c5`](https://github.com/guilatrova/tryceratops/commit/0a2c1c5a9efe77c94a0080369ce2e18ae3e937b7)) + +### Documentation +* Add changelog to pypi and readme ([`9dac24b`](https://github.com/guilatrova/tryceratops/commit/9dac24b50b92e39abac63307345343189ccb24bf)) + ## v0.2.6 (2021-07-21) ### Fix * **cli:** Return exit code for unprocessed ([`50df1dc`](https://github.com/guilatrova/tryceratops/commit/50df1dcb3f671062a76b280c994672a2313b9d38)) diff --git a/README.md b/README.md index 000bfb5..5a1fec9 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.2.6 + rev: v0.3.0 hooks: - id: tryceratops ``` diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index b37b508..e7e81bf 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.6 +tryceratops, version 0.3.0 ``` ## Testing diff --git a/pyproject.toml b/pyproject.toml index d615aee..f95f0df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tryceratops" -version = "0.2.6" +version = "0.3.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 d70a9af..3d06613 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.6" +__version__ = "0.3.0"