From f9202b0dcd98499621114ef50483480e2fa64c4e Mon Sep 17 00:00:00 2001 From: Pierre Poulain Date: Wed, 18 Aug 2021 13:50:10 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.2.0=20=E2=86=92=202.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .zenodo.json | 2 +- CHANGELOG.md | 2 ++ devtools/bumpversion.cfg | 2 +- flaskapp/__init__.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index 2ac1875..b4a9258 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -1,5 +1,5 @@ { - "title": "AutoClassWeb (v1.2.0): a web app to run AutoClass C Bayesian clustering", + "title": "AutoClassWeb (v2.0.0): 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 78c62e9..9f4643c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ **Dev** + +**2.0.0** - Remove e-mail support **1.2.0** diff --git a/devtools/bumpversion.cfg b/devtools/bumpversion.cfg index 8fe1466..559a95f 100644 --- a/devtools/bumpversion.cfg +++ b/devtools/bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.2.0 +current_version = 2.0.0 [bumpversion:file:flaskapp/__init__.py] diff --git a/flaskapp/__init__.py b/flaskapp/__init__.py index f9441ed..f0a6528 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"] = "1.2.0" +app.config["VERSION"] = "2.0.0" app.logger.info(f"AutoClassWeb version: {app.config['VERSION']}")