Skip to content

Commit c159e9f

Browse files
🔖 bump version 0.1.1 -> 0.2.0 (#118)
* 🔖 bump version 0.1.1 -> 0.2.0 * update CHANGELOG
1 parent 64a9139 commit c159e9f

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
77

88
## [Unreleased]
99

10+
## [0.2.0]
11+
12+
**This release involves migrations.** Please read below for more information.
13+
14+
### Added
15+
16+
- A `RelayEmailData` dataclass for representing the `Message.data` field.
17+
- Documentation in the package's deprecation policy about the road to 1.0.0.
18+
- Complete test coverage for all of the public ways of sending emails that Django provides.
19+
20+
### Changed
21+
22+
- **Breaking**: The internal JSON schema for the `Message.data` field has been updated to bring it more in line with all of the possible fields provided by Django's `EmailMessage` and `EmailMultiAlternatives`. This change involves a migration to update the `Message.data` field to the new schema. This is a one-way update and cannot be rolled back. Please take care when updating to this version and ensure that all projects using `django-email-relay` are updated at the same time. See the [updating](https://django-email-relay.westervelt.dev/en/latest/updating.html) documentation for more information.
23+
- The internal `AppSettings` dataclass is now a `frozen=True` dataclass.
24+
1025
## [0.1.1]
1126

1227
### Added
@@ -47,6 +62,7 @@ Initial release!
4762

4863
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.
4964

50-
[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.1.1...HEAD
65+
[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.2.0...HEAD
5166
[0.1.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.0
5267
[0.1.1]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.1
68+
[0.2.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.2.0

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ path = "src/email_relay/__init__.py"
9494
[tool.bumpver]
9595
commit = true
9696
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
97-
current_version = "0.1.1"
97+
current_version = "0.2.0"
9898
push = false # set to false for CI
9999
tag = false
100100
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

src/email_relay/__init__.py

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

3-
__version__ = "0.1.1"
3+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)