From 9b6426d27c1b1f459ff93bf6f0066a81df92e0a1 Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Wed, 27 Oct 2021 15:33:02 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0=20=E2=86=92=200.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.rst | 3 +++ Makefile | 2 +- docs/source/conf.py | 2 +- setup.cfg | 14 +++++++------- twitcher/__version__.py | 2 +- 5 files changed, 13 insertions(+), 10 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 6937ff5..d60d50a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,9 @@ Changes Unreleased ========== +0.6.1 (2021-10-27) +================== + Changes: * Integrate functionality changes of ``0.5.x`` branch back into ``0.6.x``. diff --git a/Makefile b/Makefile index 4301252..8b995cd 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Configuration -VERSION := 0.6.0 +VERSION := 0.6.1 APP_ROOT := $(abspath $(lastword $(MAKEFILE_LIST))/..) INI_FILE ?= development.ini diff --git a/docs/source/conf.py b/docs/source/conf.py index 88bb924..e776ee0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,7 +62,7 @@ # The short X.Y version. version = '' # The full version, including alpha/beta/rc tags. -release = '0.6.0' +release = '0.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index e9398be..107754b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,16 +1,16 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True [bumpversion:file:CHANGES.rst] -search = +search = Unreleased ========== -replace = +replace = Unreleased ========== - + {new_version} ({now:%%Y-%%m-%%d}) ================== @@ -30,17 +30,17 @@ replace = release = '{new_version}' description-file = README.rst [tool:pytest] -addopts = +addopts = --strict --tb=native python_files = test_*.py -markers = +markers = online: mark test to need internet connection slow: mark test to be slow [flake8] max-line-length = 120 -exclude = +exclude = .git, __pycache__, twitcher/alembic/versions, diff --git a/twitcher/__version__.py b/twitcher/__version__.py index 01a0649..d71b03b 100644 --- a/twitcher/__version__.py +++ b/twitcher/__version__.py @@ -6,4 +6,4 @@ __doc__ = """Security Proxy for OGC Services like WPS.""" __author__ = """Carsten Ehbrecht""" __email__ = 'ehbrecht@dkrz.de' -__version__ = '0.6.0' +__version__ = '0.6.1'