-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]>
- Loading branch information
1 parent
41961c5
commit 75629d4
Showing
3 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]>"] | ||
license = "BSD-3-Clause" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__app__ = "badabump" | ||
__author__ = "Igor Davydenko <[email protected]>" | ||
__license__ = "BSD-3-Clause" | ||
__version__ = "21.2.0" | ||
__version__ = "21.2.1" |