Skip to content

Commit b64a089

Browse files
adjust versions for release prep (#45)
* adjust versions for release prep * fix heading link
1 parent 340199c commit b64a089

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
77

88
## [Unreleased]
99

10+
## [0.1.0]
11+
12+
Initial release!
13+
1014
### Added
1115

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

2024
[unreleased]: https://github.com/westerveltco/django-email-relay/compare/HEAD...HEAD
25+
[0.1.0]: https://github.com/westerveltco/django-email-relay/releases/tag/v0.1.0rc1

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ line-length = 88
101101
[tool.bumpver]
102102
commit = true
103103
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
104-
current_version = "2023.0"
104+
current_version = "0.1.0rc1"
105105
push = false # set to false for CI
106106
tag = true
107-
version_pattern = "YYYY.INC1"
107+
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
108108

109109
[tool.bumpver.file_patterns]
110110
"src/email_relay/__init__.py" = [

src/email_relay/__init__.py

Lines changed: 1 addition & 1 deletion
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.0rc1"

0 commit comments

Comments
 (0)