Skip to content

Commit b014798

Browse files
🔖 bump version 0.17.2 -> 0.17.3 (#225)
* 🔖 bump version 0.17.2 -> 0.17.3 * update CHANGELOG for version 0.17.3
1 parent 2b64f17 commit b014798

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.copier/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ _commit: v2024.27-4-g3fe659b
33
_src_path: /home/josh/projects/work/django-twc-package
44
author_email: josh@joshthomas.dev
55
author_name: Josh Thomas
6-
current_version: 0.17.2
6+
current_version: 0.17.3
77
django_versions:
88
- "4.2"
99
- "5.0"

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

2325
- Added new `ADD_ASSET_PREFIX` setting to control how the app label prefix is added to asset URLs. This setting provides more flexibility than the previous DEBUG-based behavior, especially useful in test environments.
@@ -470,7 +472,7 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
470472

471473
- Josh Thomas <josh@joshthomas.dev> (maintainer)
472474

473-
[unreleased]: https://github.com/joshuadavidthomas/django-bird/compare/v0.17.2...HEAD
475+
[unreleased]: https://github.com/joshuadavidthomas/django-bird/compare/v0.17.3...HEAD
474476
[0.1.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.1.0
475477
[0.1.1]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.1.1
476478
[0.2.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.2.0
@@ -511,3 +513,4 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
511513
[0.17.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.17.0
512514
[0.17.1]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.17.1
513515
[0.17.2]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.17.2
516+
[0.17.3]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.17.3

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ root = "tests"
103103
[tool.bumpver]
104104
commit = true
105105
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
106-
current_version = "0.17.2"
106+
current_version = "0.17.3"
107107
push = false # set to false for CI
108108
tag = false
109109
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

src/django_bird/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
from pluggy import HookimplMarker
44

5-
__version__ = "0.17.2"
5+
__version__ = "0.17.3"
66

77
hookimpl = HookimplMarker("django_bird")

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.17.2"
7+
assert __version__ == "0.17.3"

0 commit comments

Comments
 (0)