From 75629d4a3ba13ee65e0caf218e45ed2977fa1251 Mon Sep 17 00:00:00 2001 From: "badabump-release-bot[bot]" <73354554+badabump-release-bot[bot]@users.noreply.github.com> Date: Sun, 1 Aug 2021 16:32:33 +0000 Subject: [PATCH] chore: 21.2.1 Release (#84) Fixes: ------ - [#78] Precisely replace version in pyproject.toml or package.json files (#79) - [#76] By default ignore footer URLs in ChangeLog (#81) Other: ------ - (**deps**) Bump actions/cache from 2.1.5 to 2.1.6 (#74) - (**deps**) Bump peter-evans/create-pull-request from 3.8.2 to 3.10.0 (#73) - (**deps-dev**) Bump pytest-cov from 2.11.1 to 2.12.1 (#75) - (**deps-dev**) Bump time-machine from 2.1.0 to 2.3.1 (#77) - [#80] Use tomli instead of toml library (#82) - Bump pre-commit hooks (#83) Co-authored-by: playpauseandstop --- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- src/badabump/__init__.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a47bc5..7003164 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# 21.2.1 (2021-08-01) + +## Fixes: + +- [#78] Precisely replace version in pyproject.toml or package.json files (#79) +- [#76] By default ignore footer URLs in ChangeLog (#81) + +## Other: + +- (**deps**) Bump actions/cache from 2.1.5 to 2.1.6 (#74) +- (**deps**) Bump peter-evans/create-pull-request from 3.8.2 to 3.10.0 (#73) +- (**deps-dev**) Bump pytest-cov from 2.11.1 to 2.12.1 (#75) +- (**deps-dev**) Bump time-machine from 2.1.0 to 2.3.1 (#77) +- [#80] Use tomli instead of toml library (#82) +- Bump pre-commit hooks (#83) + # 21.2.0 (2021-05-12) Now `badabump` supports backticks in release notes, which allows to put code blocks in GitHub Releases description, using standard Markdown syntax, diff --git a/pyproject.toml b/pyproject.toml index e55238e..eaeb3e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ virtual_env = "./.venv/" [tool.poetry] name = "badabump" -version = "21.2.0" +version = "21.2.1" 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 2a818a0..02fe02f 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.0" +__version__ = "21.2.1"