Skip to content

Commit c3c2339

Browse files
🔖 bump version 0.2.0 -> 0.2.1 (#25)
1 parent feb91e6 commit c3c2339

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.12
33
_src_path: gh:westerveltco/django-twc-package
44
author_email: [email protected]
55
author_name: Josh Thomas
6-
current_version: 0.2.0
6+
current_version: 0.2.1
77
django_versions:
88
- '3.2'
99
- '4.2'

CHANGELOG.md

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

20+
## [0.2.1]
21+
2022
### Added
2123

2224
- Added a `TaskRegistry.created_tasks` attribute to store the `Task` instances created by the `TaskRegistry`.
@@ -65,6 +67,7 @@ Initial release!
6567

6668
- Josh Thomas <[email protected]> (maintainer)
6769

68-
[unreleased]: https://github.com/westerveltco/django-q-registry/compare/v0.2.0...HEAD
70+
[unreleased]: https://github.com/westerveltco/django-q-registry/compare/v0.2.1...HEAD
6971
[0.1.0]: https://github.com/westerveltco/django-q-registry/releases/tag/v0.1.0
7072
[0.2.0]: https://github.com/westerveltco/django-q-registry/releases/tag/v0.2.0
73+
[0.2.1]: https://github.com/westerveltco/django-q-registry/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/westerveltco/django-q-registry"
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_q_registry/__init__.py

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

33
from django_q_registry.registry import register_task
44

5-
__version__ = "0.2.0"
5+
__version__ = "0.2.1"
66
__template_version__ = "2024.12"
77

88
__all__ = [

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)