Skip to content

Commit

Permalink
Bump version: 0.4.2 → 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lrpereira committed Jan 15, 2024
1 parent 9414ca3 commit 3f59bb3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.2
current_version = 0.5.0
commit = True
tag = True

Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Versioning <https://semver.org/spec/v2.0.0.html>`__.
`Unreleased`_
=============

`0.5.0`_ - 2024-01-15
=====================

Added
----
- Support for Python 3.10
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions monetdb_stethoscope/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_monetdb_profiler_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@


def test_version():
assert __version__ == '0.4.2'
assert __version__ == '0.5.0'

0 comments on commit 3f59bb3

Please sign in to comment.