Skip to content

Commit 4a6785b

Browse files
🔖 bump version 0.4.1 -> 0.4.2 (#149)
1 parent b6087b7 commit 4a6785b

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.1
6+
current_version: 0.4.2
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.2]
22+
2123
### Fixed
2224

2325
- Added `LICENSE` to `Dockerfile`.
@@ -116,11 +118,12 @@ Initial release!
116118

117119
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.
118120

119-
[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.4.1...HEAD
121+
[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.4.2...HEAD
120122
[0.1.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.0
121123
[0.1.1]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.1
122124
[0.2.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.2.0
123125
[0.2.1]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.2.1
124126
[0.3.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.3.0
125127
[0.4.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.4.0
126128
[0.4.1]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.4.1
129+
[0.4.2]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.4.2

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Source = "https://github.com/westerveltco/django-email-relay"
7878
[tool.bumpver]
7979
commit = true
8080
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
81-
current_version = "0.4.1"
81+
current_version = "0.4.2"
8282
push = false # set to false for CI
8383
tag = false
8484
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.1"
3+
__version__ = "0.4.2"
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.1"
7+
assert __version__ == "0.4.2"

0 commit comments

Comments
 (0)