diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7080068..ef1e983 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.7.1 +current_version = 2.8.0 commit = True tag = True diff --git a/.travis.yml b/.travis.yml index 4c04a90..c71f010 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,7 +45,7 @@ jobs: deploy: provider: releases api_key: ${GITHUB_DEPLOY_TOKEN} - file: build/nsis/elisctl_2.7.1.exe + file: build/nsis/elisctl_2.8.0.exe skip_cleanup: true on: tags: true diff --git a/elisctl/__init__.py b/elisctl/__init__.py index 88ac4ca..179180d 100644 --- a/elisctl/__init__.py +++ b/elisctl/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.7.1" +__version__ = "2.8.0" CTX_PROFILE = "PROFILE" CTX_DEFAULT_PROFILE = "default" diff --git a/installer.cfg b/installer.cfg index 7ed8b72..9b2f72d 100644 --- a/installer.cfg +++ b/installer.cfg @@ -1,6 +1,6 @@ [Application] name=elisctl -version=2.7.1 +version=2.8.0 entry_point=elisctl.main:entry_point console=true diff --git a/setup.py b/setup.py index 0fb6977..b99b7b9 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="elisctl", - version="2.7.1", + version="2.8.0", description="Command line interface for controlling the Rossum platform", long_description=open("README.md").read(), long_description_content_type="text/markdown",