From d9a4adeb9597c20cc6929a3e8a855ab4baef06cd Mon Sep 17 00:00:00 2001 From: Pierre Poulain Date: Mon, 23 Dec 2019 16:49:09 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.0=20=E2=86=92=201.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ devtools/bumpversion.cfg | 2 +- flaskapp/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39833a1..b35bb45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ **Dev** + +**1.1.0** - Minor updates - Documentation of default configuration diff --git a/devtools/bumpversion.cfg b/devtools/bumpversion.cfg index ce51fa1..058c663 100644 --- a/devtools/bumpversion.cfg +++ b/devtools/bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.0.0 +current_version = 1.1.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} diff --git a/flaskapp/__init__.py b/flaskapp/__init__.py index 2c9d847..c600674 100644 --- a/flaskapp/__init__.py +++ b/flaskapp/__init__.py @@ -49,7 +49,7 @@ # config module must be loaded after user config file import config app.config.from_object(config.CreateConfig) -app.config["VERSION"] = "1.0.0" +app.config["VERSION"] = "1.1.0" app.logger.info(f"AutoClassWeb version: {app.config['VERSION']}")