From db5927557db8c1eb8acc4a6163bdacd40bbd17cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas-Raphael=20M=C3=BCller?= Date: Mon, 29 Mar 2021 16:33:42 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.0dev1=20=E2=86=92=200.10?= =?UTF-8?q?.0rc3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- conda/decode/meta.yaml | 2 +- decode/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cf1f126c..4e7ddd5d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0dev1 +current_version = 0.10.0rc3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/conda/decode/meta.yaml b/conda/decode/meta.yaml index 99b9172b..6305eacc 100644 --- a/conda/decode/meta.yaml +++ b/conda/decode/meta.yaml @@ -1,6 +1,6 @@ package: name: decode - version: "0.10.0dev1" # do not modify by hand; set and sync with bumpversion + version: "0.10.0rc3" # do not modify by hand; set and sync with bumpversion source: - path: ../.. diff --git a/decode/__init__.py b/decode/__init__.py index 135ae9aa..0a144066 100644 --- a/decode/__init__.py +++ b/decode/__init__.py @@ -4,7 +4,7 @@ """ -__version__ = '0.10.0dev1' # do not modify by hand set and sync with bumpversion +__version__ = '0.10.0rc3' # do not modify by hand set and sync with bumpversion __author__ = 'Lucas-Raphael Mueller, Artur Speiser' __repo__ = 'https://github.com/TuragaLab/DECODE/master/gateway.yaml' # main repo __gateway__ = 'https://raw.githubusercontent.com/TuragaLab/DECODE/master/gateway.yaml' # gateway diff --git a/setup.py b/setup.py index 54f9d9d6..21f74dea 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup( name='decode', - version='0.10.0dev1', # do not modify by hand set and sync with bumpversion + version='0.10.0rc3', # do not modify by hand set and sync with bumpversion packages=setuptools.find_packages(), include_package_data=True, install_requires=requirements,