Skip to content

Commit 01c1e7e

Browse files
🔖 bump version 0.2.0 -> 0.2.1 (#21)
* 🔖 bump version 0.2.0 -> 0.2.1 * update CHANGELOG for version 0.2.1
1 parent 9af2254 commit 01c1e7e

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
1818

1919
## [Unreleased]
2020

21+
## [0.2.1]
22+
2123
### Fixed
2224

2325
- `github import-app` management command is now wrapped in an atomic transaction, in case any import steps fail.
@@ -52,6 +54,7 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
5254

5355
- Josh Thomas <josh@joshthomas.dev> (maintainer)
5456

55-
[unreleased]: https://github.com/joshuadavidthomas/django-github-app/compare/v0.2.0...HEAD
57+
[unreleased]: https://github.com/joshuadavidthomas/django-github-app/compare/v0.2.1...HEAD
5658
[0.1.0]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.1.0
5759
[0.2.0]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.2.0
60+
[0.2.1]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.2.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Source = "https://github.com/joshuadavidthomas/django-github-app"
7070
[tool.bumpver]
7171
commit = true
7272
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
73-
current_version = "0.2.0"
73+
current_version = "0.2.1"
7474
push = false # set to false for CI
7575
tag = false
7676
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

src/django_github_app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "0.2.0"
3+
__version__ = "0.2.1"

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55

66
def test_version():
7-
assert __version__ == "0.2.0"
7+
assert __version__ == "0.2.1"

0 commit comments

Comments
 (0)