Skip to content

Commit 797cac1

Browse files
🔖 bump version 0.5.0 -> 0.6.0 (#66)
1 parent a92d729 commit 797cac1

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

+4-1
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.6.0]
22+
2123
### Added
2224

2325
- Added support for Django 5.2.
@@ -94,10 +96,11 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
9496

9597
- Josh Thomas <[email protected]> (maintainer)
9698

97-
[unreleased]: https://github.com/joshuadavidthomas/django-github-app/compare/v0.5.0...HEAD
99+
[unreleased]: https://github.com/joshuadavidthomas/django-github-app/compare/v0.6.0...HEAD
98100
[0.1.0]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.1.0
99101
[0.2.0]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.2.0
100102
[0.2.1]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.2.1
101103
[0.3.0]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.3.0
102104
[0.4.0]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.4.0
103105
[0.5.0]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.5.0
106+
[0.6.0]: https://github.com/joshuadavidthomas/django-github-app/releases/tag/v0.6.0

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# django-github-app
22

3-
[![PyPI](https://img.shields.io/pypi/v/django-github-app)](https://pypi.org/project/django-github-app/)
4-
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-github-app)
53
<!-- [[[cog
64
import subprocess
75
import cog
86
97
from noxfile import DJ_VERSIONS
108
from noxfile import PY_VERSIONS
119
10+
cog.outl("[![PyPI](https://img.shields.io/pypi/v/django-github-app)](https://pypi.org/project/django-github-app/)")
11+
cog.outl("![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-github-app)")
1212
cog.outl(f"![Django Version](https://img.shields.io/badge/django-{'%20%7C%20'.join(DJ_VERSIONS)}-%2344B78B?labelColor=%23092E20)")
1313
]]] -->
14+
[![PyPI](https://img.shields.io/pypi/v/django-github-app)](https://pypi.org/project/django-github-app/)
15+
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-github-app)
1416
![Django Version](https://img.shields.io/badge/django-4.2%20%7C%205.1%20%7C%205.2%20%7C%20main-%2344B78B?labelColor=%23092E20)
1517
<!-- [[[end]]] -->
1618

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Source = "https://github.com/joshuadavidthomas/django-github-app"
101101
[tool.bumpver]
102102
commit = true
103103
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
104-
current_version = "0.5.0"
104+
current_version = "0.6.0"
105105
push = false # set to false for CI
106106
tag = false
107107
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

src/django_github_app/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "0.5.0"
3+
__version__ = "0.6.0"

tests/test_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55

66
def test_version():
7-
assert __version__ == "0.5.0"
7+
assert __version__ == "0.6.0"

0 commit comments

Comments
 (0)