Skip to content

Commit

Permalink
Version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nikdoof committed Dec 16, 2021
1 parent a393758 commit 20de548
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = simplelist
version = 1.1.0
version = 1.1.1
description = a simple mailing list tool designed for Postfix.
long_description = file: README.md, LICENSE
license = MIT
Expand Down
2 changes: 1 addition & 1 deletion simplelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def build_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser('simplelist')
parser.add_argument('list', help='List name')
parser.add_argument('-c', '--config', help='Location of the configuration file to use', default='/etc/postfix/simplelist.yaml')
parser.add_argument('-v', '--version', action='version', version='%(prog)s 1.1.0') # noqa: WPS323
parser.add_argument('-v', '--version', action='version', version='%(prog)s 1.1.1') # noqa: WPS323
return parser


Expand Down

0 comments on commit 20de548

Please sign in to comment.