diff --git a/CHANGELOG.md b/CHANGELOG.md index b5ba679..e303930 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,15 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ ## [Unreleased] +## [0.2.1] + ### Fixed - Migration 0002 was not being applied to the `default` database, which is the norm when running the relay in Docker. -## [0.2.0] +## [0.2.0] - **YANKED** + +This release has been yanked from PyPI due to a bug in the migration that was not caught. **This release involves migrations.** Please read below for more information. @@ -66,7 +70,8 @@ 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.2.0...HEAD +[unreleased]: https://github.com/westerveltco/django-email-relay/compare/v0.2.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 [0.2.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.2.0 +[0.2.1]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.2.1 diff --git a/pyproject.toml b/pyproject.toml index 93a7aa0..40e14a8 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.2.0" +current_version = "0.2.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 a148ede..e9bea68 100644 --- a/src/email_relay/__init__.py +++ b/src/email_relay/__init__.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "0.2.0" +__version__ = "0.2.1"