From 3f59bb3f57f3f3ed315be9579a006684051bac48 Mon Sep 17 00:00:00 2001 From: lrpereira Date: Mon, 15 Jan 2024 13:38:57 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.2=20=E2=86=92=200.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 6 +++++- docs/source/conf.py | 2 +- monetdb_stethoscope/__init__.py | 4 ++-- pyproject.toml | 2 +- tests/test_monetdb_profiler_tools.py | 2 +- 6 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 58ec1ae..057de6c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.2 +current_version = 0.5.0 commit = True tag = True diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f2f13af..6cbb6eb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,9 @@ Versioning `__. `Unreleased`_ ============= +`0.5.0`_ - 2024-01-15 +===================== + Added ---- - Support for Python 3.10 @@ -186,7 +189,8 @@ Added Predefined pipelines - raw -.. _Unreleased: https://github.com/MonetDBSolutions/monetdb-pystethoscope/compare/v0.4.2...HEAD +.. _Unreleased: https://github.com/MonetDBSolutions/monetdb-pystethoscope/compare/v0.5.0...HEAD +.. _0.5.0: https://github.com/MonetDBSolutions/monetdb-pystethoscope/compare/v0.4.2...v0.5.0 .. _0.4.2: https://github.com/MonetDBSolutions/monetdb-pystethoscope/compare/v0.4.1...v0.4.2 .. _0.4.1: https://github.com/MonetDBSolutions/monetdb-pystethoscope/compare/v0.4.0...v0.4.1 .. _0.4.0: https://github.com/MonetDBSolutions/monetdb-pystethoscope/compare/v0.3.2...v0.4.0 diff --git a/docs/source/conf.py b/docs/source/conf.py index 0733c3f..ece483f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -29,7 +29,7 @@ author = 'Panagiotis Koutsourakis' # The full version, including alpha/beta/rc tags -release = '0.4.2' +release = '0.5.0' # -- General configuration --------------------------------------------------- diff --git a/monetdb_stethoscope/__init__.py b/monetdb_stethoscope/__init__.py index 7f7fba0..66379b0 100644 --- a/monetdb_stethoscope/__init__.py +++ b/monetdb_stethoscope/__init__.py @@ -5,5 +5,5 @@ # # Copyright 1997 - July 2008 CWI, August 2008 - 2023 MonetDB B.V. -__version__ = '0.4.2' -DEVELOPMENT__ = True +__version__ = '0.5.0' +DEVELOPMENT__ = False diff --git a/pyproject.toml b/pyproject.toml index a2e3f46..3e67199 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ [tool.poetry] name = "monetdb_stethoscope" -version = "0.4.2" +version = "0.5.0" description = "MonetDB profiler connection tool" readme = "README.rst" authors = ["Panagiotis Koutsourakis "] diff --git a/tests/test_monetdb_profiler_tools.py b/tests/test_monetdb_profiler_tools.py index 2f1b1b4..d020b99 100644 --- a/tests/test_monetdb_profiler_tools.py +++ b/tests/test_monetdb_profiler_tools.py @@ -9,4 +9,4 @@ def test_version(): - assert __version__ == '0.4.2' + assert __version__ == '0.5.0'