diff --git a/CHANGELOG.md b/CHANGELOG.md index 7003164..5a86abb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 21.2.2 (2021-08-01) + +## Fixes: + +- [#86] By default parse commits in non-strict mode (#87) + # 21.2.1 (2021-08-01) ## Fixes: diff --git a/pyproject.toml b/pyproject.toml index eaeb3e2..0f9c0d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ virtual_env = "./.venv/" [tool.poetry] name = "badabump" -version = "21.2.1" +version = "21.2.2" description = "Manage changelog and bump project version number using conventional commits from latest git tag. Support Python & JavaScript projects and CalVer & SemVer schemas. Designed to run at GitHub Actions." authors = ["Igor Davydenko "] license = "BSD-3-Clause" diff --git a/src/badabump/__init__.py b/src/badabump/__init__.py index 02fe02f..aed5770 100644 --- a/src/badabump/__init__.py +++ b/src/badabump/__init__.py @@ -1,4 +1,4 @@ __app__ = "badabump" __author__ = "Igor Davydenko " __license__ = "BSD-3-Clause" -__version__ = "21.2.1" +__version__ = "21.2.2"