diff --git a/.github/scripts/tests/test_check_otel_wheel_dependencies.py b/.github/scripts/tests/test_check_otel_wheel_dependencies.py index 0e45f803..1752ff41 100644 --- a/.github/scripts/tests/test_check_otel_wheel_dependencies.py +++ b/.github/scripts/tests/test_check_otel_wheel_dependencies.py @@ -36,7 +36,7 @@ def test_accepts_layer_provided_dependencies_with_standalone_extra( wheel = _write_wheel( tmp_path, ( - "aws-durable-execution-sdk-python>=1.8.0", + "aws-durable-execution-sdk-python>=2.0.0", "OpenTelemetry_API>=1.20.0; extra == 'standalone'", "opentelemetry.sdk>=1.20.0; extra == 'standalone'", "OpenTelemetry-Propagator_AWS-XRay; extra == 'standalone'", @@ -50,7 +50,7 @@ def test_rejects_default_opentelemetry_dependency(tmp_path: Path) -> None: wheel = _write_wheel( tmp_path, ( - "aws-durable-execution-sdk-python>=1.8.0", + "aws-durable-execution-sdk-python>=2.0.0", "opentelemetry-sdk>=1.20.0", "opentelemetry-api>=1.20.0; extra == 'standalone'", "opentelemetry-sdk>=1.20.0; extra == 'standalone'", @@ -68,7 +68,7 @@ def test_rejects_noncanonical_default_opentelemetry_dependency( wheel = _write_wheel( tmp_path, ( - "aws-durable-execution-sdk-python>=1.8.0", + "aws-durable-execution-sdk-python>=2.0.0", "OpenTelemetry_SDK>=1.20.0", "opentelemetry-api>=1.20.0; extra == 'standalone'", "opentelemetry-sdk>=1.20.0; extra == 'standalone'", @@ -84,7 +84,7 @@ def test_rejects_incomplete_standalone_extra(tmp_path: Path) -> None: wheel = _write_wheel( tmp_path, ( - "aws-durable-execution-sdk-python>=1.8.0", + "aws-durable-execution-sdk-python>=2.0.0", "opentelemetry-api>=1.20.0; extra == 'standalone'", "opentelemetry-sdk>=1.20.0; extra == 'standalone'", ), diff --git a/packages/aws-durable-execution-sdk-python-conformance-tests-otel/pyproject.toml b/packages/aws-durable-execution-sdk-python-conformance-tests-otel/pyproject.toml index 16d03a6a..c280f149 100644 --- a/packages/aws-durable-execution-sdk-python-conformance-tests-otel/pyproject.toml +++ b/packages/aws-durable-execution-sdk-python-conformance-tests-otel/pyproject.toml @@ -9,7 +9,7 @@ description = "OpenTelemetry conformance test handlers for the AWS Durable Execu requires-python = ">=3.11" dependencies = [ "aws-durable-execution-sdk-python==2.0.0", - "aws-durable-execution-sdk-python-otel==0.4.0", + "aws-durable-execution-sdk-python-otel==1.0.0", ] [tool.hatch.build.targets.wheel] diff --git a/packages/aws-durable-execution-sdk-python-otel/src/aws_durable_execution_sdk_python_otel/__about__.py b/packages/aws-durable-execution-sdk-python-otel/src/aws_durable_execution_sdk_python_otel/__about__.py index 08043af9..fc21e413 100644 --- a/packages/aws-durable-execution-sdk-python-otel/src/aws_durable_execution_sdk_python_otel/__about__.py +++ b/packages/aws-durable-execution-sdk-python-otel/src/aws_durable_execution_sdk_python_otel/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2025-present Amazon.com, Inc. or its affiliates. # # SPDX-License-Identifier: Apache-2.0 -__version__ = "0.4.0" +__version__ = "1.0.0"