diff --git a/dev-logbook.md b/dev-logbook.md index bfdeaa0..15f1a84 100644 --- a/dev-logbook.md +++ b/dev-logbook.md @@ -211,8 +211,8 @@ Deploy to pypi (cp. =1.21.0", "pandas>=1.3.0", ] -version = "0.1.4.dev0" +version = "0.1.5" [project.optional-dependencies] docs = [ @@ -99,7 +99,7 @@ field = [ ] [tool.tbump.version] -current = "0.1.4.dev0" +current = "0.1.5" regex = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)((?Pa|b|rc|.dev)(?P\\d+))?" [tool.tbump.git] diff --git a/soniscope_jupyter/_version.py b/soniscope_jupyter/_version.py index 152ca4d..bd34cad 100644 --- a/soniscope_jupyter/_version.py +++ b/soniscope_jupyter/_version.py @@ -4,5 +4,5 @@ # Copyright (c) Alexander Rind & the SoniVis team. # Distributed under the terms of the MIT License (see LICENSE.txt). -version_info = (0, 1, 4, 'dev') +version_info = (0, 1, 5) __version__ = ".".join(map(str, version_info))