diff --git a/README.md b/README.md index a4f5a54..3f8e941 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ optional arguments: -l View Available TV Show/Movies & Configuration -e MODIFY MODIFY Modify Weights -n NSFW Enable/Disable NSFW Quotes - -v Version and author information + -v show program's version number and exit ``` ## How to Configure? diff --git a/funmotd/__init__.py b/funmotd/__init__.py index 7351b22..30d6ad9 100644 --- a/funmotd/__init__.py +++ b/funmotd/__init__.py @@ -12,7 +12,7 @@ __author__ = "veerendra2" __license__ = "Apache 2.0" -__version__ = "1.0" +__version__ = "1.1" __maintainer__ = "veerendra2" @@ -85,7 +85,7 @@ def main(): Configuration") arg.add_argument("-e", action="store", dest="modify", default=False, nargs=2, help="Modify Weights") arg.add_argument("-n", action="store", dest="nsfw", default=False, help="Enable/Disable NSFW Quotes") - arg.add_argument('-v', action='version', version='%(prog)s 1.0') + arg.add_argument('-v', action='version', version='%(prog)s 1.1') results = arg.parse_args() if results.view: display_config() diff --git a/setup.py b/setup.py index 32bee9e..226088e 100644 --- a/setup.py +++ b/setup.py @@ -37,15 +37,14 @@ def run(self): setuptools.setup( name='funmotd', - version='1.0', + version='1.1', description='TV Show and Movie Quotes MOTD for Terminal', long_description=long_description, long_description_content_type='text/markdown', keywords='motd, funmotd, movies-quotes', project_urls={ 'Documentation': 'https://github.com/veerendra2/funmotd/blob/master/README.md', - 'Bug Reports': - 'https://github.com/veerendra2/funmotd/issues', + 'Bug Reports': 'https://github.com/veerendra2/funmotd/issues', 'Source Code': 'https://github.com/veerendra2/funmotd', }, author='veerendra2',