Skip to content

Commit

Permalink
chore: 21.2.1 Release (#84)
Browse files Browse the repository at this point in the history
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 <playpauseandstop@users.noreply.github.com>
  • Loading branch information
1 parent 41961c5 commit 75629d4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <iam@igordavydenko.com>"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion src/badabump/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__app__ = "badabump"
__author__ = "Igor Davydenko <iam@igordavydenko.com>"
__license__ = "BSD-3-Clause"
__version__ = "21.2.0"
__version__ = "21.2.1"

0 comments on commit 75629d4

Please sign in to comment.