Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Apr 15, 2024
2 parents 9865d75 + fc0534d commit 600923c
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/dev-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
- name: Generate unique version and update test version
run: |
poetry self add poetry-bumpversion
poetry self install
version=$(poetry version -s)
poetry version "${version}.dev${GITHUB_RUN_ID}"
Expand Down
2 changes: 1 addition & 1 deletion docker/entrypoint_backend.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e
python -m syncmaster.db.migrations upgrade head

# exec is required to forward all signals to the main process
exec python -m syncmaster.backend --host 0.0.0.0 --port 8000 "$@" &
exec python -m syncmaster.backend --host 0.0.0.0 --port 8000 "$@"
7 changes: 7 additions & 0 deletions docs/changelog/0.1.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
0.1.3 (2024-04-15)
==================

Bug Fixes
----------

Fix backend image entrypoint.
1 change: 1 addition & 0 deletions docs/changelog/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
:caption: Changelog

DRAFT
0.1.3
0.1.2
0.1.1
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# The short X.Y version.

# this value is updated automatically by `poetry version ...` and poetry-bumpversion plugin
ver = Version.parse("0.1.2")
ver = Version.parse("0.1.3")
version = ver.base_version
# The full version, including alpha/beta/rc tags.
release = ver.public
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "data-syncmaster"
version = "0.1.2"
version = "0.1.3"
license = "Apache-2.0"
description = "Syncmaster REST API + Worker"
authors = ["DataOps.ETL <onetools@mts.ru>"]
Expand Down Expand Up @@ -199,6 +199,7 @@ exclude_lines = [




[tool.poetry.group.docs.dependencies]
autodoc-pydantic = {version = "^2.0.1", python = ">=3.8"}
numpydoc = {version = "^1.6.0", python = ">=3.8"}
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-FileCopyrightText: 2023-2024 MTS (Mobile Telesystems)
# SPDX-License-Identifier: Apache-2.0

_raw_version = "0.1.2"
_raw_version = "0.1.3"
# version always contain only release number like 0.0.1
__version__ = ".".join(_raw_version.split(".")[:3]) # noqa: WPS410

0 comments on commit 600923c

Please sign in to comment.