From 14b858f5fb821ec6d24aa535b243bc7a3c81432b Mon Sep 17 00:00:00 2001 From: sobolevn Date: Wed, 26 Sep 2018 21:50:47 +0300 Subject: [PATCH] Release 0.1.1, closes #2 --- CHANGELOG.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f0d5f5d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# Version history + +We follow Semantic Versions since the `0.1.0` release. + + +## Version 0.1.1 + +### Bugfixes + +- Relies on `attrs` explicitly, see #2 + +### Misc + +- Improves readme +- Improves tests + + +## Version 0.1.0 + +- Initial release diff --git a/pyproject.toml b/pyproject.toml index 35b9672..fd7b817 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flake8-eradicate" -version = "0.1.0" +version = "0.1.1" description = "Flake8 plugin to find commented out code" license = "MIT"