Skip to content

Commit

Permalink
Support Click 8
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed May 12, 2021
1 parent 6b8b5c9 commit 534177a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.2.1 (in development)
-----------------------
- Support Click 8

v0.2.0 (2021-03-14)
-------------------
- Require the `port` field of `SMTPSender` to be non-negative
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Changelog
=========

v0.2.1 (in development)
-----------------------
- Support Click 8

v0.2.0 (2021-03-14)
-------------------
- Require the ``port`` field of ``SMTPSender`` to be non-negative
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"
__version__ = "0.2.1.dev1"
__author__ = "John Thorvald Wodder II"
__author_email__ = "outgoing@varonathe.org"
__license__ = "MIT"
Expand Down
2 changes: 2 additions & 0 deletions src/outgoing/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,13 @@
f" [default: {DEFAULT_CONFIG_SECTION}]"
),
metavar="KEY",
type=click.UNPROCESSED,
)
@click.option(
"--no-section",
"section",
flag_value=NO_SECTION,
type=click.UNPROCESSED,
help="Read configuration from the root of the config file",
)
@click.argument("message", type=click.File("rb"), nargs=-1)
Expand Down

0 comments on commit 534177a

Please sign in to comment.