From 97ae0f87f03dafbd4ad78d89618ad03fb986f2fe Mon Sep 17 00:00:00 2001 From: Michael Eliachevitch Date: Mon, 22 Mar 2021 10:36:18 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.1=20=E2=86=92=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- b2luigi/__init__.py | 2 +- docs/conf.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 78c157f7..e53cfae4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1 +current_version = 0.6.0 commit = True tag = True diff --git a/b2luigi/__init__.py b/b2luigi/__init__.py index 6802dec1..a5935316 100644 --- a/b2luigi/__init__.py +++ b/b2luigi/__init__.py @@ -1,5 +1,5 @@ """Task scheduling and batch running for basf2 jobs made simple""" -__version__ = "0.5.1" +__version__ = "0.6.0" from luigi import * from luigi.util import inherits, copies diff --git a/docs/conf.py b/docs/conf.py index 299fc865..65a828e6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '0.5.1' +release = '0.6.0' # -- General configuration ---------------------------------------------------