Skip to content

Commit 903f0d6

Browse files
🔖 bump version 0.13.0 -> 0.13.1 (#166)
* 🔖 bump version 0.13.0 -> 0.13.1 * update CHANGELOG for version 0.13.1 * update uv.lock for version 0.13.1 * Refactor attribute value handling with pattern matching * Update CHANGELOG.md with internal refactoring and bug fixes * update changelog
1 parent 8d09f1a commit 903f0d6

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
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: [email protected]
55
author_name: Josh Thomas
6-
current_version: 0.13.0
6+
current_version: 0.13.1
77
django_versions:
88
- "4.2"
99
- "5.0"

CHANGELOG.md

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

1919
## [Unreleased]
2020

21+
## [0.13.1]
22+
23+
### Changed
24+
25+
- **Internal**: Refactored attribute value handling to use pattern matching for cleaner value resolution.
26+
- **Internal**: Improved handling of quoted vs unquoted attribute values in component parameters.
27+
- **Internal**: Simplified template tag parsing in `bird`, `bird:prop`, and `bird:slot` tags.
28+
- **Internal**: Refactored component parameter handling to be more consistent across the codebase.
29+
2130
### Fixed
31+
2232
- Fixed asset URL generation to properly use Django's static file storage system instead of raw file paths.
33+
- Fixed handling of data attributes in components to properly handle quotes and boolean values.
2334

2435
## [0.13.0]
2536

@@ -308,7 +319,7 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
308319

309320
- Josh Thomas <[email protected]> (maintainer)
310321

311-
[unreleased]: https://github.com/joshuadavidthomas/django-bird/compare/v0.13.0...HEAD
322+
[unreleased]: https://github.com/joshuadavidthomas/django-bird/compare/v0.13.1...HEAD
312323
[0.1.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.1.0
313324
[0.1.1]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.1.1
314325
[0.2.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.2.0
@@ -337,3 +348,4 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
337348
[0.12.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.12.0
338349
[0.12.1]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.12.1
339350
[0.13.0]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.13.0
351+
[0.13.1]: https://github.com/joshuadavidthomas/django-bird/releases/tag/v0.13.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ root = "tests"
9292
[tool.bumpver]
9393
commit = true
9494
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
95-
current_version = "0.13.0"
95+
current_version = "0.13.1"
9696
push = false # set to false for CI
9797
tag = false
9898
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
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "0.13.0"
3+
__version__ = "0.13.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.13.0"
7+
assert __version__ == "0.13.1"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)