File tree Expand file tree Collapse file tree 7 files changed +14
-4
lines changed
Expand file tree Collapse file tree 7 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 44python -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 " $@ "
Original file line number Diff line number Diff line change 1+ 0.1.3 (2024-04-15)
2+ ==================
3+
4+ Bug Fixes
5+ ----------
6+
7+ Fix backend image entrypoint.
Original file line number Diff line number Diff line change 33 :caption: Changelog
44
55 DRAFT
6+ 0.1.3
67 0.1.2
78 0.1.1
Original file line number Diff line number Diff line change 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 " )
4040version = ver .base_version
4141# The full version, including alpha/beta/rc tags.
4242release = ver .public
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " data-syncmaster"
3- version = " 0.1.2 "
3+ version = " 0.1.3 "
44license = " Apache-2.0"
55description = " Syncmaster REST API + Worker"
66authors = [
" DataOps.ETL <[email protected] >" ]
@@ -199,6 +199,7 @@ exclude_lines = [
199199
200200
201201
202+
202203[tool .poetry .group .docs .dependencies ]
203204autodoc-pydantic = {version = " ^2.0.1" , python = " >=3.8" }
204205numpydoc = {version = " ^1.6.0" , python = " >=3.8" }
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments