diff --git a/docs/conf.py b/docs/conf.py index 504fac1..4072e27 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,7 +64,7 @@ # built documents. # # The short X.Y version. -version = '4.1.7' +version = '4.1.8' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 43db5e6..cfca3e9 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ if os.name == 'nt': extra_packages.append('pypiwin32') -__version__ = '4.1.7' +__version__ = '4.1.8' # Get the long description from the README file def readme(): diff --git a/stakkr/cli.py b/stakkr/cli.py index 36e0df9..4455c58 100644 --- a/stakkr/cli.py +++ b/stakkr/cli.py @@ -19,7 +19,7 @@ Read the configuration file and setup the required services by linking and managing everything for you.""") -@click.version_option('4.1.7') +@click.version_option('4.1.8') @click.option('--config', '-c', help='Set the configuration filename (stakkr.yml by default)') @click.option('--debug/--no-debug', '-d', default=False) @click.option('--verbose', '-v', is_flag=True)