Skip to content

Commit a75ffc2

Browse files
🔖 bump version 0.1.0 -> 0.1.1 (#110)
* 🔖 bump version 0.1.0 -> 0.1.1 * update CHANGELOG
1 parent 23350cc commit a75ffc2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.1]
11+
12+
### Added
13+
14+
- Moved a handful of common `Message` queries and actions from the `runrelay` management command to methods on the `MessageManager` class.
15+
1016
### Fixed
1117

1218
- The relay service would crash if requests raised an `Exception` during the healthcheck ping. Now it will log the exception and continue processing the queue.
@@ -41,5 +47,6 @@ Initial release!
4147

4248
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.
4349

44-
[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.1.0...HEAD
50+
[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.1.1...HEAD
4551
[0.1.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.0
52+
[0.1.1]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.1

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.0"
97+
current_version = "0.1.1"
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.0"
3+
__version__ = "0.1.1"

0 commit comments

Comments
 (0)