Skip to content

Commit 1a188f5

Browse files
committed
Bump to 0.14.5
1 parent e2fb825 commit 1a188f5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM flaport/sax:0.14.4
1+
FROM flaport/sax:0.14.5

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build:
77

88
docker:
99
docker build . -t flaport/sax:latest -f Dockerfile.dev
10-
docker build . -t flaport/sax:0.14.4 -f Dockerfile.dev
10+
docker build . -t flaport/sax:0.14.5 -f Dockerfile.dev
1111

1212
pre-commit:
1313
pre-commit install
@@ -18,7 +18,7 @@ nbrun:
1818

1919
dockerpush:
2020
docker push flaport/sax:latest
21-
docker push flaport/sax:0.14.4
21+
docker push flaport/sax:0.14.5
2222

2323
.PHONY: docs
2424
docs:

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project = "sax"
2020
copyright = "2023, Apache2"
2121
author = "Floris Laporte"
22-
release = "0.14.4"
22+
release = "0.14.5"
2323
extensions = [
2424
"myst_nb",
2525
"matplotlib.sphinxext.plot_directive",

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["setuptools", "pip", "build", "wheel"]
44

55
[project]
66
name = "sax"
7-
version = "0.14.4"
7+
version = "0.14.5"
88
requires-python = ">=3.11.0"
99
authors = [
1010
{ name = "Floris Laporte", email = "[email protected]" },
@@ -115,7 +115,7 @@ message_template = "Bump to {new_version}"
115115
tag_template = "{new_version}"
116116

117117
[tool.tbump.version]
118-
current = "0.14.4"
118+
current = "0.14.5"
119119
regex = '''
120120
(?P<major>\d+)
121121
\.

sax/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import annotations
44

55
__author__ = "Floris Laporte"
6-
__version__ = "0.14.4"
6+
__version__ = "0.14.5"
77

88

99
from functools import partial as partial

0 commit comments

Comments
 (0)