Skip to content

Commit

Permalink
chore: 21.3.3a0 Release (#111)
Browse files Browse the repository at this point in the history
Check that `backticks` and code snippets works well in git tags borrowed from release messages.

```py
print("Hello, world!")
```

Other:
------

- Fix saving tag message to file in release tag workflow (#110)

Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com>
  • Loading branch information
1 parent cd17efe commit b3cd40d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# 21.3.3 (In Development)

## 21.3.3a0 (2021-11-02)

Check that `backticks` and code snippets works well in git tags borrowed from release messages.

```py
print("Hello, world!")
```

### Other:

- Fix saving tag message to file in release tag workflow (#110)

# 21.3.2 (2021-11-01)

## Other:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ignore_errors = true

[tool.poetry]
name = "badabump"
version = "21.3.2"
version = "21.3.3a0"
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.3.2"
__version__ = "21.3.3a0"

0 comments on commit b3cd40d

Please sign in to comment.