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 600923c + bddd57f commit 04cf9f6
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 3 deletions.
1 change: 1 addition & 0 deletions docker/Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ARG BASE_IMAGE=python:3.11-slim
FROM $BASE_IMAGE AS prod

RUN apt-get update && apt-get install -y \
krb5-user \
libkrb5-dev \
libsasl2-dev \
libsasl2-modules-gssapi-mit \
Expand Down
8 changes: 8 additions & 0 deletions docs/changelog/0.1.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
0.1.4 (2024-04-15)
==================

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

- Fix missing backend factory for uvicorn.
- Fix missing ``kinit`` executable in worker image.
1 change: 1 addition & 0 deletions docs/changelog/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
:caption: Changelog

DRAFT
0.1.4
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.3")
ver = Version.parse("0.1.4")
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.3"
version = "0.1.4"
license = "Apache-2.0"
description = "Syncmaster REST API + Worker"
authors = ["DataOps.ETL <onetools@mts.ru>"]
Expand Down Expand Up @@ -200,6 +200,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.3"
_raw_version = "0.1.4"
# version always contain only release number like 0.0.1
__version__ = ".".join(_raw_version.split(".")[:3]) # noqa: WPS410
4 changes: 4 additions & 0 deletions syncmaster/backend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ def application_factory(settings: Settings) -> FastAPI:
)

return application


def get_application() -> FastAPI:
return application_factory(settings=Settings())

0 comments on commit 04cf9f6

Please sign in to comment.