Skip to content

Commit

Permalink
Version 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nikdoof committed Jul 2, 2021
1 parent 9b30c23 commit dc9aa95
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 = 0.0.2
version = 0.0.3
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 @@ -57,7 +57,7 @@ def main() -> int: # noqa: WPS212 WPS210 WPS213
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 0.0.2') # noqa: WPS323
parser.add_argument('-v', '--version', action='version', version='%(prog)s 0.0.3') # noqa: WPS323
args = parser.parse_args()

# Load config
Expand Down

0 comments on commit dc9aa95

Please sign in to comment.