Skip to content

Commit

Permalink
馃敄 bump version 0.1.0 -> 0.1.1 (#110)
Browse files Browse the repository at this point in the history
* 馃敄 bump version 0.1.0 -> 0.1.1

* update CHANGELOG
  • Loading branch information
joshuadavidthomas committed Oct 30, 2023
1 parent 23350cc commit a75ffc2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]"
Expand Down
2 changes: 1 addition & 1 deletion src/email_relay/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

__version__ = "0.1.0"
__version__ = "0.1.1"

0 comments on commit a75ffc2

Please sign in to comment.