Skip to content

build-system add version #143

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

Closed
wants to merge 3 commits into from
Closed
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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# CHANGELOG

## v0.338.0 (2025-04-08)

### Feature

* feat: regenerate proto ([`0b76570`](https://github.com/yandex-cloud/python-sdk/commit/0b765709bc144f855538e6637cde35098fe41569))

* feat(retries): added throttling mode (#139)

* feat(retries): added throttling mode

* feat(retries): after review

* feat(retries): after review more

---------

Co-authored-by: Natan Tolparov <[email protected]> ([`5b4dac1`](https://github.com/yandex-cloud/python-sdk/commit/5b4dac164988d9acdb088436fb64cbdc0787960f))

### Unknown

* Operation respone and meta on error ([`c4ec534`](https://github.com/yandex-cloud/python-sdk/commit/c4ec53467c627367a9ab6c4b61697b05d1c43db5))

* dataproc start/stop operations ([`e198801`](https://github.com/yandex-cloud/python-sdk/commit/e1988013d820619c092d23ca74563aab5efeef0f))

## v0.337.0 (2025-03-19)

### Feature
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[build-system]
version = "0.338.0"
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "yandexcloud"
version = "0.337.0"
version = "0.338.0"
authors = [{name = "Yandex LLC", email = "[email protected]"}]
license = {text = "MIT"}
description = "The Yandex Cloud official SDK"
Expand Down Expand Up @@ -80,7 +81,10 @@ namespaces = false

[tool.semantic_release]
version_variables = ["yandexcloud/__init__.py:__version__"]
version_toml = ["pyproject.toml:project.version"]
version_toml = [
"pyproject.toml:build-system.version",
"pyproject.toml:project.version"
]
# https://python-semantic-release.readthedocs.io/en/latest/configuration.html#major-on-zero
major_on_zero = false
commit_parser = "angular"
Expand Down
2 changes: 1 addition & 1 deletion yandexcloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from yandexcloud._retry_policy import RetryPolicy, ThrottlingMode
from yandexcloud._sdk import SDK

__version__ = "0.337.0"
__version__ = "0.338.0"
Loading