diff --git a/CHANGELOG.md b/CHANGELOG.md index 852fdee..a6a6cc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1] - 2020-10-01 + +### Added + +- Add python 3.10 support + + ## [0.2.0] - 2020-10-01 ### changed @@ -71,7 +78,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release. -[unreleased]: https://github.com/10sr/flake8-no-implicit-concat/compare/v0.2.0...HEAD +[unreleased]: https://github.com/10sr/flake8-no-implicit-concat/compare/v0.2.1...HEAD +[0.2.1]: https://github.com/10sr/flake8-no-implicit-concat/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/10sr/flake8-no-implicit-concat/compare/v0.1.5...v0.2.0 [0.1.5]: https://github.com/10sr/flake8-no-implicit-concat/compare/v0.1.4...v0.1.5 [0.1.4]: https://github.com/10sr/flake8-no-implicit-concat/compare/v0.1.3...v0.1.4 diff --git a/MANIFEST.in b/MANIFEST.in index a29098e..0c5c0e9 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,5 @@ include README.md include Makefile -include Pipfile -include Pipfile.lock graft tests diff --git a/flake8_no_implicit_concat/_version.py b/flake8_no_implicit_concat/_version.py index c3d0e1a..c7331a4 100644 --- a/flake8_no_implicit_concat/_version.py +++ b/flake8_no_implicit_concat/_version.py @@ -1,3 +1,3 @@ """NIC version.""" -__version__ = "0.2.0" +__version__ = "0.2.1"