diff --git a/CHANGELOG.md b/CHANGELOG.md index 65c7276..62c24e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ +## v1.0.0 (2021-11-22) +### Feature +* Add prefer `TypeError` analyzer ([`ac75e37`](https://github.com/guilatrova/tryceratops/commit/ac75e377b8c6213f549fccc45a4d34db2c73404c)) + +### Breaking +* add prefer `TypeError` analyzer ([`ac75e37`](https://github.com/guilatrova/tryceratops/commit/ac75e377b8c6213f549fccc45a4d34db2c73404c)) + +### Documentation +* Add `TypeError` violation ([`d424e7c`](https://github.com/guilatrova/tryceratops/commit/d424e7c0bd4ce8364ad6dd8f47c08619e5bbd6de)) +* Make tryceratops use case more obvious ([`36f1292`](https://github.com/guilatrova/tryceratops/commit/36f1292e3e4bbd6a2bb1201069d1a902e8b68360)) +* Update badges ([`eb3c162`](https://github.com/guilatrova/tryceratops/commit/eb3c1624c9a79e4341151ecc884d338f51217ac2)) + ## v0.6.1 (2021-11-17) ### Fix * **windows:** Remove emojis from presentation ([`e7f6bbe`](https://github.com/guilatrova/tryceratops/commit/e7f6bbec1dfb525aacd1a30c8e737b27ef93efd9)) diff --git a/README.md b/README.md index 02e7e5b..99116f3 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ If you wish to use pre-commit, add this: ```yaml - repo: https://github.com/guilatrova/tryceratops - rev: v0.6.1 + rev: v1.0.0 hooks: - id: tryceratops ``` diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index bb9a01c..a2fdfe1 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.6.1 +tryceratops, version 1.0.0 ``` ## Testing diff --git a/pyproject.toml b/pyproject.toml index 229e87c..17505ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tryceratops" -version = "0.6.1" +version = "1.0.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 bb1a680..0d03cb7 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.6.1" +__version__ = "1.0.0"