Skip to content

Commit 4383a71

Browse files
committed
Bump version 0.0.3 => 0.0.4
1 parent 6422aab commit 4383a71

4 files changed

Lines changed: 20 additions & 34 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
- License changed to MIT from GPL3.
88
- Added the patch version of PIP.
99

10-
## 0.0.4 [Upcoming]
11-
- Remove the typo of the GPL license name at the end of theb README.md file.
10+
## 0.0.4
11+
- Remove the typo of the GPL license name at the end of theb README.md file.
12+
- Dependency update.

examples/basic/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
MAIL_BACKEND=environ.get("MAIL_BACKEND"),
2020
MAIL_SERVER=environ.get("MAIL_SERVER"),
2121
MAIL_PORT=environ.get("MAIL_PORT"),
22-
MAIL_USE_TLS=environ.get("MAIL_USE_TLS"),
23-
MAIL_USE_SSL=environ.get("MAIL_USE_SSL"),
24-
MAIL_DEFAULT_SENDER=environ.get("MAIL_DEFAULT_SENDER"),
22+
MAIL_USE_TLS=environ.get("MAIL_USE_TLS", True),
23+
MAIL_USE_SSL=environ.get("MAIL_USE_SSL", False),
24+
MAIL_DEFAULT_SENDER=environ.get("MAIL_DEFAULT_SENDER", environ.get("MAIL_USERNAME")),
2525
)
2626
mail = Mail(config)
2727

poetry.lock

Lines changed: 13 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "Fastapi-Mailman"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
description = "Porting Django's email implementation to your FastAPI applications."
55
authors = ["Aniket Sarkar <aniketsarkar@yahoo.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)