Skip to content

Commit

Permalink
v0.2.0 — Logging and .env files
Browse files Browse the repository at this point in the history
- Require the `port` field of `SMTPSender` to be non-negative
- Mark `Sender` as `runtime_checkable` and export it
- Gave the `outgoing` command `--section`, `--no-section`, and `--log-level` options
- Added logging to built-in sender classes
- The `outgoing` command now loads settings from `.env` files and has an `--env` option
  • Loading branch information
jwodder committed Mar 14, 2021
1 parent 987897b commit 3b7f7fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.2.0 (in development)
-----------------------
v0.2.0 (2021-03-14)
-------------------
- Require the `port` field of `SMTPSender` to be non-negative
- Mark `Sender` as `runtime_checkable` and export it
- Gave the `outgoing` command `--section`, `--no-section`, and `--log-level`
Expand Down
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
=========

v0.2.0 (in development)
-----------------------
v0.2.0 (2021-03-14)
-------------------
- Require the ``port`` field of ``SMTPSender`` to be non-negative
- Mark `Sender` as ``runtime_checkable`` and export it
- Gave the :command:`outgoing` command ``--section``, ``--no-section``, and
Expand Down
2 changes: 1 addition & 1 deletion src/outgoing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
more information.
"""

__version__ = "0.2.0.dev1"
__version__ = "0.2.0"
__author__ = "John Thorvald Wodder II"
__author_email__ = "outgoing@varonathe.org"
__license__ = "MIT"
Expand Down

0 comments on commit 3b7f7fe

Please sign in to comment.