Skip to content

Commit 34d0b05

Browse files
committed
Bump version
1 parent e3afdfe commit 34d0b05

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/dev-release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
- name: Fix logo in Readme
4848
run: |
4949
sed -i "s#image:: docs/#image:: https://raw.githubusercontent.com/MobileTeleSystems/syncmaster/$GITHUB_SHA/docs/#g" README.rst
50+
sed -i "s#logo_wide_red_text.svg#logo_wide.svg#g" README.rst
5051
5152
- name: Build package
5253
run: poetry build

.github/workflows/release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
- name: Fix logo in Readme
6060
run: |
6161
sed -i "s#image:: docs/#image:: https://raw.githubusercontent.com/MobileTeleSystems/syncmaster/$GITHUB_SHA/docs/#g" README.rst
62+
sed -i "s#logo_wide_red_text.svg#logo_wide.svg#g" README.rst
6263
6364
- name: Build package
6465
run: poetry build

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.3.0")
39+
ver = Version.parse("0.3.1")
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.3.0"
7+
version = "0.3.1"
88
license = "Apache-2.0"
99
description = "Syncmaster REST API + Worker"
1010
authors = ["MWS Data Bridge <[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-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33

4-
_raw_version = "0.3.0"
4+
_raw_version = "0.3.1"
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)