diff --git a/.bumpversion.cfg b/.bumpversion.cfg index db447c99c..34bf24bd9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.0 +current_version = 0.13.0 commit = True tag = True tag_name = {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c9b9657d..0d46f482d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## [proselint@0.13.0](https://github.com/amperser/proselint/compare/0.12.0...0.13.0) + +### Bug Fixes + +- made memoize safe for both arguments and keyword arguments ([#1217](https://github.com/amperser/proselint/pull/1217)) + +### Features + +- now exports decorators that wrap meta-checks ([#1188](https://github.com/amperser/proselint/pull/1188)] + ## [proselint@0.12.0](https://github.com/amperser/proselint/compare/0.11.3...0.12.0) ### Bug fixes diff --git a/proselint/version.py b/proselint/version.py index 757a20607..8cdcee149 100644 --- a/proselint/version.py +++ b/proselint/version.py @@ -1,3 +1,3 @@ """Proselint version number.""" -__version__ = "0.12.0" +__version__ = "0.13.0" diff --git a/pyproject.toml b/pyproject.toml index bf60eafed..ac3dee2a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "proselint" -version = "0.12.0" +version = "0.13.0" description = "A linter for prose." license = "BSD-3-Clause" authors = ["Amperser Labs "]