Skip to content

Commit

Permalink
Bump version 0.0.3 => 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
marktennyson committed Mar 8, 2022
1 parent 6422aab commit 4383a71
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 34 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
- License changed to MIT from GPL3.
- Added the patch version of PIP.

## 0.0.4 [Upcoming]
- Remove the typo of the GPL license name at the end of theb README.md file.
## 0.0.4
- Remove the typo of the GPL license name at the end of theb README.md file.
- Dependency update.
6 changes: 3 additions & 3 deletions examples/basic/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
MAIL_BACKEND=environ.get("MAIL_BACKEND"),
MAIL_SERVER=environ.get("MAIL_SERVER"),
MAIL_PORT=environ.get("MAIL_PORT"),
MAIL_USE_TLS=environ.get("MAIL_USE_TLS"),
MAIL_USE_SSL=environ.get("MAIL_USE_SSL"),
MAIL_DEFAULT_SENDER=environ.get("MAIL_DEFAULT_SENDER"),
MAIL_USE_TLS=environ.get("MAIL_USE_TLS", True),
MAIL_USE_SSL=environ.get("MAIL_USE_SSL", False),
MAIL_DEFAULT_SENDER=environ.get("MAIL_DEFAULT_SENDER", environ.get("MAIL_USERNAME")),
)
mail = Mail(config)

Expand Down
41 changes: 13 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Fastapi-Mailman"
version = "0.0.3"
version = "0.0.4"
description = "Porting Django's email implementation to your FastAPI applications."
authors = ["Aniket Sarkar <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 4383a71

Please sign in to comment.