Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release 0.1.1 #29

Merged
merged 7 commits into from
Mar 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/changelog/0.1.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
0.1.1 (2024-03-29)
==================
SyncMaster is now open source!
2 changes: 1 addition & 1 deletion docs/changelog/NEXT_RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.. towncrier release notes start
dmitry-pedchenko marked this conversation as resolved.
Show resolved Hide resolved
.. towncrier release notes start
3 changes: 3 additions & 0 deletions docs/changelog/index.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. toctree::
:maxdepth: 1
:caption: Changelog

DRAFT
0.1.1
2 changes: 1 addition & 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.0"
version = "0.1.1"
license = "Apache-2.0"
description = "Syncmaster REST API + Worker"
authors = ["DataOps.ETL <onetools@mts.ru>"]
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.0"
_raw_version = "0.1.1"
# version always contain only release number like 0.0.1
__version__ = ".".join(_raw_version.split(".")[:3]) # noqa: WPS410