Skip to content

Commit dd22021

Browse files
authored
Prepare release 1.40.0/0.61b0 (#4949)
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
1 parent 26c7166 commit dd22021

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
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
> [!IMPORTANT]
1111
> We are working on stabilizing the Log signal that would require making deprecations and breaking changes. We will try to reduce the releases that may require an update to your code, especially for instrumentations or for sdk developers.
1212

13-
## Unreleased
13+
## Version 1.40.0/0.61b0 (2026-03-04)
1414

1515
- `opentelemetry-sdk`: deprecate `LoggingHandler` in favor of `opentelemetry-instrumentation-logging`, see `opentelemetry-instrumentation-logging` documentation
1616
([#4919](https://github.com/open-telemetry/opentelemetry-python/pull/4919))

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.40.0.dev
14+
version=1.40.0
1515

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

2929
[prerelease]
30-
version=0.61b0.dev
30+
version=0.61b0
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
@@ -32,7 +32,7 @@ dependencies = [
3232
"grpcio >= 1.66.2, < 2.0.0; python_version == '3.13'",
3333
"grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'",
3434
"opencensus-proto >= 0.1.0, < 1.0.0",
35-
"opentelemetry-api >= 1.40.0.dev",
35+
"opentelemetry-api >= 1.40.0",
3636
"opentelemetry-sdk >= 1.15",
3737
"protobuf ~= 3.13",
3838
"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.61b0.dev"
15+
__version__ = "0.61b0"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
"Programming Language :: Python :: 3.14",
2828
]
2929
dependencies = [
30-
"opentelemetry-proto == 1.40.0.dev",
30+
"opentelemetry-proto == 1.40.0",
3131
]
3232

3333
[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.40.0.dev"
15+
__version__ = "1.40.0"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ dependencies = [
3232
"grpcio >= 1.66.2, < 2.0.0; python_version == '3.13'",
3333
"grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'",
3434
"opentelemetry-api ~= 1.15",
35-
"opentelemetry-proto == 1.40.0.dev",
36-
"opentelemetry-sdk ~= 1.40.0.dev",
37-
"opentelemetry-exporter-otlp-proto-common == 1.40.0.dev",
35+
"opentelemetry-proto == 1.40.0",
36+
"opentelemetry-sdk ~= 1.40.0",
37+
"opentelemetry-exporter-otlp-proto-common == 1.40.0",
3838
"typing-extensions >= 4.6.0",
3939
]
4040

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.40.0.dev"
15+
__version__ = "1.40.0"

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

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

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.40.0.dev"
15+
__version__ = "1.40.0"

0 commit comments

Comments
 (0)