Skip to content

Commit 1279566

Browse files
committed
chore(release): bump sdk to 2.0.0
Bump the SDK version for the 2.0.0 major release and align every reference to the never-published 1.8.0: - conformance test packages: exact pins to ==2.0.0 - otel and insight packages: SDK floor to >=2.0.0 (both build against the 2.0 plugin interface) - test-pypi-otel hatch env: SDK floor to >=2.0.0 - lambda-layer-publish.toml: sdk-version pin to 2.0.0 for the next otel layer release SDK-only release: otel and testing package versions are unchanged.
1 parent 11408f6 commit 1279566

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/lambda-layer-publish.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[layer]
2-
sdk-version = "1.8.0"
2+
sdk-version = "2.0.0"

packages/aws-durable-execution-sdk-python-conformance-tests-otel/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.0.0"
88
description = "OpenTelemetry conformance test handlers for the AWS Durable Execution SDK for Python, exercised by the aws-durable-execution-conformance-tests OTel suites."
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"aws-durable-execution-sdk-python==1.8.0",
11+
"aws-durable-execution-sdk-python==2.0.0",
1212
"aws-durable-execution-sdk-python-otel==0.4.0",
1313
]
1414

packages/aws-durable-execution-sdk-python-conformance-tests/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.0.0"
88
description = "Cross-SDK conformance test handlers for the AWS Durable Execution SDK for Python, exercised by the aws-durable-execution-conformance-tests runner."
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"aws-durable-execution-sdk-python==1.8.0",
11+
"aws-durable-execution-sdk-python==2.0.0",
1212
]
1313

1414
[tool.hatch.build.targets.wheel]

packages/aws-durable-execution-sdk-python-insight/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ classifiers = [
2121
"Programming Language :: Python :: Implementation :: CPython",
2222
]
2323
dependencies = [
24-
# >=1.8.0: first release carrying the plugin invocation-hook fields
24+
# >=2.0.0: first published release carrying the plugin invocation-hook fields
2525
# (InvocationInfo.execution_input / InvocationEndInfo.execution_result).
26-
"aws-durable-execution-sdk-python>=1.8.0",
26+
"aws-durable-execution-sdk-python>=2.0.0",
2727
]
2828

2929
[project.optional-dependencies]

packages/aws-durable-execution-sdk-python-otel/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: Implementation :: PyPy",
2323
]
2424
dependencies = [
25-
"aws-durable-execution-sdk-python>=1.8.0",
25+
"aws-durable-execution-sdk-python>=2.0.0",
2626
]
2727

2828
[project.entry-points."aws_durable_execution.plugins"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: 2025-present Amazon.com, Inc. or its affiliates.
22
#
33
# SPDX-License-Identifier: Apache-2.0
4-
__version__ = "1.8.0"
4+
__version__ = "2.0.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ test = "pytest packages/aws-durable-execution-sdk-python-examples/test {args}"
129129

130130
[tool.hatch.envs.test-pypi-otel]
131131
dependencies = [
132-
"aws-durable-execution-sdk-python>=1.8.0",
132+
"aws-durable-execution-sdk-python>=2.0.0",
133133
"opentelemetry-sdk>=1.20.0",
134134
"opentelemetry-propagator-aws-xray",
135135
"pytest",

0 commit comments

Comments
 (0)