Skip to content

Commit ad266aa

Browse files
Prepare release 1.35.0/0.56b0 (#4681)
1 parent 62eed3d commit ad266aa

File tree

31 files changed

+40
-40
lines changed

31 files changed

+40
-40
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## Version 1.35.0/0.56b0 (2025-07-11)
99

1010
- Update OTLP proto to v1.7 [#4645](https://github.com/open-telemetry/opentelemetry-python/pull/4645).
1111
- Add `event_name` as a top level field in the `LogRecord`. Events are now simply logs with the

eachdist.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sortfirst=
1111
exporter/*
1212

1313
[stable]
14-
version=1.35.0.dev
14+
version=1.35.0
1515

1616
packages=
1717
opentelemetry-sdk
@@ -27,7 +27,7 @@ packages=
2727
opentelemetry-api
2828

2929
[prerelease]
30-
version=0.56b0.dev
30+
version=0.56b0
3131

3232
packages=
3333
opentelemetry-opentracing-shim

exporter/opentelemetry-exporter-opencensus/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies = [
3030
"grpcio >= 1.63.2, < 2.0.0; python_version < '3.13'",
3131
"grpcio >= 1.66.2, < 2.0.0; python_version >= '3.13'",
3232
"opencensus-proto >= 0.1.0, < 1.0.0",
33-
"opentelemetry-api >= 1.35.0.dev",
33+
"opentelemetry-api >= 1.35.0",
3434
"opentelemetry-sdk >= 1.15",
3535
"protobuf ~= 3.13",
3636
"setuptools >= 16.0",

exporter/opentelemetry-exporter-opencensus/src/opentelemetry/exporter/opencensus/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.56b0.dev"
15+
__version__ = "0.56b0"

exporter/opentelemetry-exporter-otlp-proto-common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.13",
2727
]
2828
dependencies = [
29-
"opentelemetry-proto == 1.35.0.dev",
29+
"opentelemetry-proto == 1.35.0",
3030
]
3131

3232
[project.urls]

exporter/opentelemetry-exporter-otlp-proto-common/src/opentelemetry/exporter/otlp/proto/common/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.35.0.dev"
15+
__version__ = "1.35.0"

exporter/opentelemetry-exporter-otlp-proto-grpc/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ dependencies = [
3030
"grpcio >= 1.63.2, < 2.0.0; python_version < '3.13'",
3131
"grpcio >= 1.66.2, < 2.0.0; python_version >= '3.13'",
3232
"opentelemetry-api ~= 1.15",
33-
"opentelemetry-proto == 1.35.0.dev",
34-
"opentelemetry-sdk ~= 1.35.0.dev",
35-
"opentelemetry-exporter-otlp-proto-common == 1.35.0.dev",
33+
"opentelemetry-proto == 1.35.0",
34+
"opentelemetry-sdk ~= 1.35.0",
35+
"opentelemetry-exporter-otlp-proto-common == 1.35.0",
3636
"typing-extensions >= 4.6.0",
3737
]
3838

exporter/opentelemetry-exporter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.35.0.dev"
15+
__version__ = "1.35.0"

exporter/opentelemetry-exporter-otlp-proto-http/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ classifiers = [
2828
dependencies = [
2929
"googleapis-common-protos ~= 1.52",
3030
"opentelemetry-api ~= 1.15",
31-
"opentelemetry-proto == 1.35.0.dev",
32-
"opentelemetry-sdk ~= 1.35.0.dev",
33-
"opentelemetry-exporter-otlp-proto-common == 1.35.0.dev",
31+
"opentelemetry-proto == 1.35.0",
32+
"opentelemetry-sdk ~= 1.35.0",
33+
"opentelemetry-exporter-otlp-proto-common == 1.35.0",
3434
"requests ~= 2.7",
3535
"typing-extensions >= 4.5.0",
3636
]

exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.35.0.dev"
15+
__version__ = "1.35.0"

0 commit comments

Comments
 (0)