diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ec5dbe..9892955 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changes +## v0.3.0 + +* Code quality improvements: linting, typing +* Supporting Python versions 3.10 - 3.12 +* Improve Outlook forward detection + ## v0.2.4 * First version using auto-release process diff --git a/quotequail/__init__.py b/quotequail/__init__.py index 0e18e52..ae18883 100644 --- a/quotequail/__init__.py +++ b/quotequail/__init__.py @@ -3,7 +3,7 @@ from . import _internal, _patterns -__version__ = "0.2.4" +__version__ = "0.3.0" __all__ = ["quote", "quote_html", "unwrap", "unwrap_html"]