From 3da127c212c3953e672449ad494372bd93d86bee Mon Sep 17 00:00:00 2001 From: Michaela Ockova Date: Tue, 28 Jul 2020 07:44:49 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.9.1=20=E2=86=92=202.10.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .travis.yml | 2 +- elisctl/__init__.py | 2 +- installer.cfg | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 97f2417..b353c95 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.9.1 +current_version = 2.10.0 commit = True tag = True diff --git a/.travis.yml b/.travis.yml index b689291..9bacca9 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.9.1.exe + file: build/nsis/elisctl_2.10.0.exe skip_cleanup: true on: tags: true diff --git a/elisctl/__init__.py b/elisctl/__init__.py index e389357..e31c89e 100644 --- a/elisctl/__init__.py +++ b/elisctl/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.9.1" +__version__ = "2.10.0" CTX_PROFILE = "PROFILE" CTX_DEFAULT_PROFILE = "default" diff --git a/installer.cfg b/installer.cfg index 396cf94..27488c1 100644 --- a/installer.cfg +++ b/installer.cfg @@ -1,6 +1,6 @@ [Application] name=elisctl -version=2.9.1 +version=2.10.0 entry_point=elisctl.main:entry_point console=true diff --git a/setup.py b/setup.py index 4cffe1d..8216cce 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="elisctl", - version="2.9.1", + version="2.10.0", description="Command line interface for controlling the Rossum platform", long_description=open("README.md").read(), long_description_content_type="text/markdown",