Skip to content

Commit 2e44acb

Browse files
committed
[DOP-15023] Bump version
1 parent fc0534d commit 2e44acb

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
# The short X.Y version.
3737

3838
# this value is updated automatically by `poetry version ...` and poetry-bumpversion plugin
39-
ver = Version.parse("0.1.3")
39+
ver = Version.parse("0.1.4")
4040
version = ver.base_version
4141
# The full version, including alpha/beta/rc tags.
4242
release = ver.public

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "data-syncmaster"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
license = "Apache-2.0"
55
description = "Syncmaster REST API + Worker"
66
authors = ["DataOps.ETL <[email protected]>"]
@@ -200,6 +200,7 @@ exclude_lines = [
200200

201201

202202

203+
203204
[tool.poetry.group.docs.dependencies]
204205
autodoc-pydantic = {version = "^2.0.1", python = ">=3.8"}
205206
numpydoc = {version = "^1.6.0", python = ">=3.8"}

syncmaster/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-FileCopyrightText: 2023-2024 MTS (Mobile Telesystems)
22
# SPDX-License-Identifier: Apache-2.0
33

4-
_raw_version = "0.1.3"
4+
_raw_version = "0.1.4"
55
# version always contain only release number like 0.0.1
66
__version__ = ".".join(_raw_version.split(".")[:3]) # noqa: WPS410

0 commit comments

Comments
 (0)