From a75ffc28944b49a11332569df4217827fec8a134 Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Mon, 30 Oct 2023 09:33:21 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20bump=20version=200.1.0=20->=200.?= =?UTF-8?q?1.1=20(#110)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * :bookmark: bump version 0.1.0 -> 0.1.1 * update CHANGELOG --- CHANGELOG.md | 9 ++++++++- pyproject.toml | 2 +- src/email_relay/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54311c0..c936ba8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ ## [Unreleased] +## [0.1.1] + +### Added + +- Moved a handful of common `Message` queries and actions from the `runrelay` management command to methods on the `MessageManager` class. + ### Fixed - 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! 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. -[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.1.0...HEAD +[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.1.1...HEAD [0.1.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.0 +[0.1.1]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.1 diff --git a/pyproject.toml b/pyproject.toml index 1a2d743..3aaa0d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -94,7 +94,7 @@ path = "src/email_relay/__init__.py" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "0.1.0" +current_version = "0.1.1" push = false # set to false for CI tag = false version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" diff --git a/src/email_relay/__init__.py b/src/email_relay/__init__.py index f11ec6a..4e2c34c 100644 --- a/src/email_relay/__init__.py +++ b/src/email_relay/__init__.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "0.1.0" +__version__ = "0.1.1"