diff --git a/docs/conf.py b/docs/conf.py index 4072e27..a4ca890 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,7 +64,7 @@ # built documents. # # The short X.Y version. -version = '4.1.8' +version = '4.2' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 44a0791..f5f59c0 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ if os.name == 'nt': extra_packages.append('pypiwin32') -__version__ = '4.1.8' +__version__ = '4.2' # Get the long description from the README file def readme(): diff --git a/stakkr/cli.py b/stakkr/cli.py index 4455c58..4032c77 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.8') +@click.version_option('4.2') @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)