Skip to content

Commit cb6eef1

Browse files
🔖 bump version 0.1.0 -> 0.2.0 (#19)
1 parent 9bc1b3e commit cb6eef1

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

‎CHANGELOG.md

+5-1
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.0]
21+
2022
### Added
2123

2224
- Refactored the `django_q_registry.registry.Task` dataclass into a `django_q_registry.models.Task` Django model. This should make it more flexible and robust for registering tasks and the associated `django_q.models.Schedule` instances.
@@ -51,5 +53,7 @@ Initial release!
5153

5254
- Josh Thomas <[email protected]> (maintainer)
5355

54-
[unreleased]: https://github.com/westerveltco/django-q-registry/compare/v0.1.0...HEAD
56+
[unreleased]: https://github.com/westerveltco/django-q-registry/compare/v0.2.0...HEAD
5557
[0.1.0]: https://github.com/westerveltco/django-q-registry/releases/tag/v0.1.0
58+
59+
[0.2.0]: https://github.com/westerveltco/django-q-registry/releases/tag/v0.2.0

‎pyproject.toml

+1-1
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.1.0"
73+
current_version = "0.2.0"
7474
push = false # set to false for CI
7575
tag = false
7676
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

‎src/django_q_registry/__init__.py

+1-1
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.1.0"
5+
__version__ = "0.2.0"
66
__template_version__ = "2024.10"
77

88
__all__ = [

‎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.1.0"
7+
assert __version__ == "0.2.0"

0 commit comments

Comments
 (0)