diff --git a/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsPythonDependency.java b/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsPythonDependency.java index e1a5a6b0d..90aa2e0fe 100644 --- a/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsPythonDependency.java +++ b/codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsPythonDependency.java @@ -22,7 +22,7 @@ private AwsPythonDependency() {} */ public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency( "smithy_aws_core", - "~=0.1.0", + "~=0.2.0", PythonDependency.Type.DEPENDENCY, false); } diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index adbdc31a0..c8f736a5d 100644 --- a/codegen/build.gradle.kts +++ b/codegen/build.gradle.kts @@ -15,5 +15,5 @@ allprojects { group = "software.amazon.smithy.python" - version = "0.0.1" + version = "0.1.0" } diff --git a/codegen/core/src/main/java/software/amazon/smithy/python/codegen/SmithyPythonDependency.java b/codegen/core/src/main/java/software/amazon/smithy/python/codegen/SmithyPythonDependency.java index 654bea9fe..71fde8b10 100644 --- a/codegen/core/src/main/java/software/amazon/smithy/python/codegen/SmithyPythonDependency.java +++ b/codegen/core/src/main/java/software/amazon/smithy/python/codegen/SmithyPythonDependency.java @@ -22,7 +22,7 @@ public final class SmithyPythonDependency { */ public static final PythonDependency SMITHY_CORE = new PythonDependency( "smithy_core", - "~=0.1.0", + "~=0.2.0", Type.DEPENDENCY, false); @@ -33,7 +33,7 @@ public final class SmithyPythonDependency { */ public static final PythonDependency SMITHY_HTTP = new PythonDependency( "smithy_http", - "~=0.2.0", + "~=0.3.0", Type.DEPENDENCY, false); @@ -60,7 +60,7 @@ public final class SmithyPythonDependency { */ public static final PythonDependency SMITHY_JSON = new PythonDependency( "smithy_json", - "~=0.1.0", + "~=0.2.0", Type.DEPENDENCY, false); @@ -69,7 +69,7 @@ public final class SmithyPythonDependency { */ public static final PythonDependency SMITHY_AWS_EVENT_STREAM = new PythonDependency( "smithy_aws_event_stream", - "~=0.1.0", + "~=0.2.0", Type.DEPENDENCY, false); @@ -78,7 +78,7 @@ public final class SmithyPythonDependency { */ public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency( "smithy_aws_core", - "~=0.1.0", + "~=0.2.0", Type.DEPENDENCY, false); diff --git a/packages/smithy-aws-core/.changes/0.2.0.json b/packages/smithy-aws-core/.changes/0.2.0.json new file mode 100644 index 000000000..a6fde5040 --- /dev/null +++ b/packages/smithy-aws-core/.changes/0.2.0.json @@ -0,0 +1,20 @@ +{ + "changes": [ + { + "type": "dependency", + "description": "Bump `smithy-json` from `~=0.1.0` to `~=0.2.0`." + }, + { + "type": "dependency", + "description": "Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`." + }, + { + "type": "dependency", + "description": "Bump `smithy-aws-event-stream` from `~=0.1.0` to `~=0.2.0`." + }, + { + "type": "dependency", + "description": "Bump `smithy-http` from `~=0.2.0` to `~=0.3.0`." + } + ] +} \ No newline at end of file diff --git a/packages/smithy-aws-core/CHANGELOG.md b/packages/smithy-aws-core/CHANGELOG.md index 61400b618..90a18a3d5 100644 --- a/packages/smithy-aws-core/CHANGELOG.md +++ b/packages/smithy-aws-core/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v0.2.0 + +### Dependencies +* Bump `smithy-json` from `~=0.1.0` to `~=0.2.0`. +* Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`. +* Bump `smithy-aws-event-stream` from `~=0.1.0` to `~=0.2.0`. +* Bump `smithy-http` from `~=0.2.0` to `~=0.3.0`. + ## v0.1.1 ### Dependencies diff --git a/packages/smithy-aws-core/pyproject.toml b/packages/smithy-aws-core/pyproject.toml index a2efc6fe8..c9c2defe5 100644 --- a/packages/smithy-aws-core/pyproject.toml +++ b/packages/smithy-aws-core/pyproject.toml @@ -26,8 +26,8 @@ classifiers = [ "Topic :: Software Development :: Libraries" ] dependencies = [ - "smithy-core~=0.1.0", - "smithy-http~=0.2.0", + "smithy-core~=0.2.0", + "smithy-http~=0.3.0", "aws-sdk-signers~=0.1.0" ] @@ -45,10 +45,10 @@ path = "src/smithy_aws_core/__init__.py" [project.optional-dependencies] eventstream = [ - "smithy-aws-event-stream~=0.1.0" + "smithy-aws-event-stream~=0.2.0" ] json = [ - "smithy-json~=0.1.0" + "smithy-json~=0.2.0" ] [tool.hatch.build] diff --git a/packages/smithy-aws-core/src/smithy_aws_core/__init__.py b/packages/smithy-aws-core/src/smithy_aws_core/__init__.py index aa37e8185..d4291a169 100644 --- a/packages/smithy-aws-core/src/smithy_aws_core/__init__.py +++ b/packages/smithy-aws-core/src/smithy_aws_core/__init__.py @@ -1,4 +1,4 @@ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 -__version__ = "0.1.1" +__version__ = "0.2.0" diff --git a/packages/smithy-aws-event-stream/.changes/0.2.0.json b/packages/smithy-aws-event-stream/.changes/0.2.0.json new file mode 100644 index 000000000..829ba710c --- /dev/null +++ b/packages/smithy-aws-event-stream/.changes/0.2.0.json @@ -0,0 +1,8 @@ +{ + "changes": [ + { + "type": "dependency", + "description": "Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`." + } + ] +} \ No newline at end of file diff --git a/packages/smithy-aws-event-stream/CHANGELOG.md b/packages/smithy-aws-event-stream/CHANGELOG.md index 04acd0477..50724dc71 100644 --- a/packages/smithy-aws-event-stream/CHANGELOG.md +++ b/packages/smithy-aws-event-stream/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.2.0 + +### Dependencies +* Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`. + ## v0.1.0 ### Breaking Changes diff --git a/packages/smithy-aws-event-stream/pyproject.toml b/packages/smithy-aws-event-stream/pyproject.toml index 85b231e3e..081b7761b 100644 --- a/packages/smithy-aws-event-stream/pyproject.toml +++ b/packages/smithy-aws-event-stream/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ "Topic :: Software Development :: Libraries" ] dependencies = [ - "smithy-core~=0.1.0", + "smithy-core~=0.2.0", ] [project.urls] diff --git a/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/__init__.py b/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/__init__.py index 36dc386c5..c392c786c 100644 --- a/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/__init__.py +++ b/packages/smithy-aws-event-stream/src/smithy_aws_event_stream/__init__.py @@ -1,4 +1,4 @@ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/packages/smithy-core/.changes/0.2.0.json b/packages/smithy-core/.changes/0.2.0.json new file mode 100644 index 000000000..2d8a52fc3 --- /dev/null +++ b/packages/smithy-core/.changes/0.2.0.json @@ -0,0 +1,8 @@ +{ + "changes": [ + { + "type": "feature", + "description": "Added support for `standard` retry mode." + } + ] +} \ No newline at end of file diff --git a/packages/smithy-core/.changes/next-release/smithy-core-breaking-20251106184528.json b/packages/smithy-core/.changes/next-release/smithy-core-breaking-20251106184528.json deleted file mode 100644 index 6fa68f5d8..000000000 --- a/packages/smithy-core/.changes/next-release/smithy-core-breaking-20251106184528.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "feature", - "description": "Added support for `standard` retry mode." -} \ No newline at end of file diff --git a/packages/smithy-core/CHANGELOG.md b/packages/smithy-core/CHANGELOG.md index 52eb36e50..29d49d545 100644 --- a/packages/smithy-core/CHANGELOG.md +++ b/packages/smithy-core/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.2.0 + +### Features +* Added support for `standard` retry mode. + ## v0.1.1 ### Bug fixes diff --git a/packages/smithy-core/src/smithy_core/__init__.py b/packages/smithy-core/src/smithy_core/__init__.py index 2cf04d6ff..f6c4e1583 100644 --- a/packages/smithy-core/src/smithy_core/__init__.py +++ b/packages/smithy-core/src/smithy_core/__init__.py @@ -8,7 +8,7 @@ from . import interfaces, rfc3986 from .exceptions import SmithyError -__version__ = "0.1.1" +__version__ = "0.2.0" class HostType(Enum): diff --git a/packages/smithy-http/.changes/0.3.0.json b/packages/smithy-http/.changes/0.3.0.json new file mode 100644 index 000000000..6fd7c8d44 --- /dev/null +++ b/packages/smithy-http/.changes/0.3.0.json @@ -0,0 +1,16 @@ +{ + "changes": [ + { + "type": "feature", + "description": "Added `MockHTTPClient` for testing SDK clients without making real HTTP requests." + }, + { + "type": "enhancement", + "description": "Added timeout error detection for HTTP clients" + }, + { + "type": "dependency", + "description": "Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`." + } + ] +} \ No newline at end of file diff --git a/packages/smithy-http/.changes/next-release/smithy-http-feature-20251024135122.json b/packages/smithy-http/.changes/next-release/smithy-http-feature-20251024135122.json deleted file mode 100644 index 328fd52b8..000000000 --- a/packages/smithy-http/.changes/next-release/smithy-http-feature-20251024135122.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "feature", - "description": "Added `MockHTTPClient` for testing SDK clients without making real HTTP requests." -} \ No newline at end of file diff --git a/packages/smithy-http/CHANGELOG.md b/packages/smithy-http/CHANGELOG.md index 052989523..e999a0232 100644 --- a/packages/smithy-http/CHANGELOG.md +++ b/packages/smithy-http/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## v0.3.0 + +### Features +* Added `MockHTTPClient` for testing SDK clients without making real HTTP requests. + +### Enhancements +* Added timeout error detection for HTTP clients + +### Dependencies +* Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`. + ## v0.2.1 ### Bug fixes diff --git a/packages/smithy-http/pyproject.toml b/packages/smithy-http/pyproject.toml index 6060e0d4e..18a5ce0a7 100644 --- a/packages/smithy-http/pyproject.toml +++ b/packages/smithy-http/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ "Topic :: Software Development :: Libraries" ] dependencies = [ - "smithy-core~=0.1.0", + "smithy-core~=0.2.0", ] [project.urls] diff --git a/packages/smithy-http/src/smithy_http/__init__.py b/packages/smithy-http/src/smithy_http/__init__.py index c4ff55b44..f877b9f44 100644 --- a/packages/smithy-http/src/smithy_http/__init__.py +++ b/packages/smithy-http/src/smithy_http/__init__.py @@ -6,7 +6,7 @@ from . import interfaces from .interfaces import FieldPosition -__version__ = "0.2.1" +__version__ = "0.3.0" class Field(interfaces.Field): diff --git a/packages/smithy-json/.changes/0.2.0.json b/packages/smithy-json/.changes/0.2.0.json new file mode 100644 index 000000000..829ba710c --- /dev/null +++ b/packages/smithy-json/.changes/0.2.0.json @@ -0,0 +1,8 @@ +{ + "changes": [ + { + "type": "dependency", + "description": "Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`." + } + ] +} \ No newline at end of file diff --git a/packages/smithy-json/CHANGELOG.md b/packages/smithy-json/CHANGELOG.md index 7f6e786b5..d1f01ed00 100644 --- a/packages/smithy-json/CHANGELOG.md +++ b/packages/smithy-json/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.2.0 + +### Dependencies +* Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`. + ## v0.1.0 ### Enhancements diff --git a/packages/smithy-json/pyproject.toml b/packages/smithy-json/pyproject.toml index f62f7cd00..d6ebe1452 100644 --- a/packages/smithy-json/pyproject.toml +++ b/packages/smithy-json/pyproject.toml @@ -27,7 +27,7 @@ classifiers = [ ] dependencies = [ "ijson>=3.3.0", - "smithy-core~=0.1.0", + "smithy-core~=0.2.0", ] [project.urls] diff --git a/packages/smithy-json/src/smithy_json/__init__.py b/packages/smithy-json/src/smithy_json/__init__.py index d5a412b5f..a16b4e4b4 100644 --- a/packages/smithy-json/src/smithy_json/__init__.py +++ b/packages/smithy-json/src/smithy_json/__init__.py @@ -13,7 +13,7 @@ from ._private.serializers import JSONShapeSerializer as _JSONShapeSerializer from .settings import JSONSettings -__version__ = "0.1.0" +__version__ = "0.2.0" __all__ = ("JSONCodec", "JSONDocument", "JSONSettings")