Skip to content

Commit

Permalink
adjust versions for release prep (#45)
Browse files Browse the repository at this point in the history
* adjust versions for release prep

* fix heading link
  • Loading branch information
joshuadavidthomas authored Oct 19, 2023
1 parent 340199c commit b64a089
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/

## [Unreleased]

## [0.1.0]

Initial release!

### Added

- An email backend that stores emails in a database ala a Message model rather than sending them via SMTP or other means
Expand All @@ -18,3 +22,4 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
- Initial CI/CD (GitHub Actions)

[unreleased]: https://github.com/westerveltco/django-email-relay/compare/HEAD...HEAD
[0.1.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.0rc1
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ line-length = 88
[tool.bumpver]
commit = true
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
current_version = "2023.0"
current_version = "0.1.0rc1"
push = false # set to false for CI
tag = true
version_pattern = "YYYY.INC1"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

[tool.bumpver.file_patterns]
"src/email_relay/__init__.py" = [
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.0rc1"

0 comments on commit b64a089

Please sign in to comment.