Skip to content

Commit 2ff4a56

Browse files
committed
[DOP-25348] Bump version
1 parent e278abe commit 2ff4a56

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

docs/changelog/0.2.1.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ Improvements
66

77
- Change docker image user from ``root`` to ``syncmaster``, to improve security.
88
- Move server healthcheck to Docker image.
9+
- SBOM file is generated on release.
910

1011
Bug fixes
11-
--------
12+
---------
1213

1314
- Fix missing Swagger docs in prod image.

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.2.1")
39+
ver = Version.parse("0.2.2")
4040
version = ver.base_version
4141
# The full version, including alpha/beta/rc tags.
4242
release = ver.public

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "data-syncmaster"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
license = "Apache-2.0"
99
description = "Syncmaster REST API + Worker"
1010
authors = ["DataOps.ETL <[email protected]>"]

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 PJSC
22
# SPDX-License-Identifier: Apache-2.0
33

4-
_raw_version = "0.2.1"
4+
_raw_version = "0.2.2"
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)