diff --git a/CHANGELOG.md b/CHANGELOG.md index 62c24e4..c66bcab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.0.1 (2021-12-31) +### Fix +* Open files with utf-8 encoding for windows ([`a46636c`](https://github.com/guilatrova/tryceratops/commit/a46636ccce68742cf83f035507c4680357cabb14)) + +### Documentation +* Update badges ([`2308e9d`](https://github.com/guilatrova/tryceratops/commit/2308e9ddbbc320b0ad43a7e959cba2d6eaa14526)) + ## v1.0.0 (2021-11-22) ### Feature * Add prefer `TypeError` analyzer ([`ac75e37`](https://github.com/guilatrova/tryceratops/commit/ac75e377b8c6213f549fccc45a4d34db2c73404c)) diff --git a/README.md b/README.md index a049402..e4536c6 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ If you wish to use pre-commit, add this: ```yaml - repo: https://github.com/guilatrova/tryceratops - rev: v1.0.0 + rev: v1.0.1 hooks: - id: tryceratops ``` diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index a2fdfe1..472f28f 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 1.0.0 +tryceratops, version 1.0.1 ``` ## Testing diff --git a/pyproject.toml b/pyproject.toml index 17505ca..a5ba478 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tryceratops" -version = "1.0.0" +version = "1.0.1" 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 0d03cb7..26c0b24 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__ = "1.0.0" +__version__ = "1.0.1"