Skip to content

Commit 731b16f

Browse files
🔖 bump version 0.4.2 -> 0.4.3 (#153)
1 parent c29af90 commit 731b16f

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.copier/package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ _commit: v2024.17
33
_src_path: gh:westerveltco/django-twc-package
44
author_email: [email protected]
55
author_name: Josh Thomas
6-
current_version: 0.4.2
6+
current_version: 0.4.3
77
django_versions:
88
- '3.2'
99
- '4.2'

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.4.3]
22+
2123
### Fixed
2224

2325
- Added all documentation pages back to `toctree`.
@@ -124,7 +126,7 @@ Initial release!
124126

125127
Big thank you to the original authors of [`django-mailer`](https://github.com/pinax/django-mailer) for the inspiration and for doing the hard work of figuring out a good way of queueing emails in a database in the first place.
126128

127-
[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.4.2...HEAD
129+
[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.4.3...HEAD
128130
[0.1.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.0
129131
[0.1.1]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.1
130132
[0.2.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.2.0
@@ -133,3 +135,4 @@ Big thank you to the original authors of [`django-mailer`](https://github.com/pi
133135
[0.4.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.4.0
134136
[0.4.1]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.4.1
135137
[0.4.2]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.4.2
138+
[0.4.3]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.4.3

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Source = "https://github.com/westerveltco/django-email-relay"
7777
[tool.bumpver]
7878
commit = true
7979
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
80-
current_version = "0.4.2"
80+
current_version = "0.4.3"
8181
push = false # set to false for CI
8282
tag = false
8383
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

src/email_relay/__init__.py

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

3-
__version__ = "0.4.2"
3+
__version__ = "0.4.3"
44
__template_version__ = "2024.17"

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.4.2"
7+
assert __version__ == "0.4.3"

0 commit comments

Comments
 (0)