Skip to content

Commit 600923c

Browse files
committed
Merge branch 'develop'
2 parents 9865d75 + fc0534d commit 600923c

File tree

7 files changed

+14
-4
lines changed

7 files changed

+14
-4
lines changed

.github/workflows/dev-release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
- name: Generate unique version and update test version
4444
run: |
4545
poetry self add poetry-bumpversion
46+
poetry self install
4647
version=$(poetry version -s)
4748
poetry version "${version}.dev${GITHUB_RUN_ID}"
4849

docker/entrypoint_backend.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -e
44
python -m syncmaster.db.migrations upgrade head
55

66
# exec is required to forward all signals to the main process
7-
exec python -m syncmaster.backend --host 0.0.0.0 --port 8000 "$@" &
7+
exec python -m syncmaster.backend --host 0.0.0.0 --port 8000 "$@"

docs/changelog/0.1.3.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
0.1.3 (2024-04-15)
2+
==================
3+
4+
Bug Fixes
5+
----------
6+
7+
Fix backend image entrypoint.

docs/changelog/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
:caption: Changelog
44

55
DRAFT
6+
0.1.3
67
0.1.2
78
0.1.1

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.2")
39+
ver = Version.parse("0.1.3")
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.2"
3+
version = "0.1.3"
44
license = "Apache-2.0"
55
description = "Syncmaster REST API + Worker"
66
authors = ["DataOps.ETL <[email protected]>"]
@@ -199,6 +199,7 @@ exclude_lines = [
199199

200200

201201

202+
202203
[tool.poetry.group.docs.dependencies]
203204
autodoc-pydantic = {version = "^2.0.1", python = ">=3.8"}
204205
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.2"
4+
_raw_version = "0.1.3"
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)