From f49984a4b3e084b41cce9b33f59880117d1e9149 Mon Sep 17 00:00:00 2001 From: Pierre Poulain Date: Wed, 18 Aug 2021 15:37:00 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.1.0=20=E2=86=92=202.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .zenodo.json | 2 +- CHANGELOG.md | 2 ++ Dockerfile | 2 +- devtools/bumpversion.cfg | 2 +- flaskapp/__init__.py | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index 61a1e58..688f9e9 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -1,5 +1,5 @@ { - "title": "AutoClassWeb (v2.1.0): a web app to run AutoClass C Bayesian clustering", + "title": "AutoClassWeb (v2.1.1): a web app to run AutoClass C Bayesian clustering", "creators": [{ "name": "Poulain, Pierre", "orcid": "0000-0003-4177-3619" diff --git a/CHANGELOG.md b/CHANGELOG.md index fcdfaf6..11778d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ **Dev** + +**2.1.1** - Update Dockerfile with Biocontainers template **2.1.0** diff --git a/Dockerfile b/Dockerfile index 8b1bed2..3602756 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM ubuntu:20.04 LABEL base_image="ubuntu:20.04" LABEL version="4" LABEL software="autoclassweb" -LABEL software.version="2.1.0" +LABEL software.version="2.1.1" LABEL about.summary="A web app to run AutoClass C Bayesian clustering" LABEL about.home="https://github.com/pierrepo/autoclassweb" LABEL about.documentation="https://github.com/pierrepo/autoclassweb" diff --git a/devtools/bumpversion.cfg b/devtools/bumpversion.cfg index cab77d7..5f34255 100644 --- a/devtools/bumpversion.cfg +++ b/devtools/bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 2.1.0 +current_version = 2.1.1 [bumpversion:file:flaskapp/__init__.py] diff --git a/flaskapp/__init__.py b/flaskapp/__init__.py index c065d4f..6a8c8e9 100644 --- a/flaskapp/__init__.py +++ b/flaskapp/__init__.py @@ -48,7 +48,7 @@ # config module must be loaded after user config file import config app.config.from_object(config.CreateConfig) -app.config["VERSION"] = "2.1.0" +app.config["VERSION"] = "2.1.1" app.logger.info(f"AutoClassWeb version: {app.config['VERSION']}")