From 3404c015986df7b6ec602e2b1bf88b428a550bbf Mon Sep 17 00:00:00 2001 From: Michaela Ockova Date: Fri, 18 Feb 2022 08:41:11 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.13.2=20=E2=86=92=203.14.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .travis.yml | 2 +- installer.cfg | 2 +- rossum/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b765f4b..a2a8092 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.13.2 +current_version = 3.14.0 commit = True tag = True diff --git a/.travis.yml b/.travis.yml index 6d6a4c8..0105940 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,7 +45,7 @@ jobs: deploy: provider: releases api_key: ${GITHUB_DEPLOY_TOKEN} - file: build/nsis/elisctl_rossum_3.13.2.exe + file: build/nsis/elisctl_rossum_3.14.0.exe skip_cleanup: true on: tags: true diff --git a/installer.cfg b/installer.cfg index 491e70a..d7eea35 100644 --- a/installer.cfg +++ b/installer.cfg @@ -1,6 +1,6 @@ [Application] name=rossum -version=3.13.2 +version=3.14.0 entry_point=rossum.main:entry_point console=true diff --git a/rossum/__init__.py b/rossum/__init__.py index 44043a4..6bf2d4e 100644 --- a/rossum/__init__.py +++ b/rossum/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.13.2" +__version__ = "3.14.0" CTX_PROFILE = "PROFILE" CTX_DEFAULT_PROFILE = "default" diff --git a/setup.py b/setup.py index ab94420..9365a0f 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="rossum", - version="3.13.2", + version="3.14.0", description="Command line interface for controlling the Rossum platform", long_description=open("README.md").read(), long_description_content_type="text/markdown",