Skip to content

Commit 3c3bacf

Browse files
authored
Release: smithy_http-0.2.0, smithy_aws_core-0.1.1 (#580)
* smithy-http v0.2.0 * smithy-aws-core v0.1.1 * Update code-generator to use latest package versions
1 parent c0176d2 commit 3c3bacf

File tree

9 files changed

+31
-9
lines changed

9 files changed

+31
-9
lines changed

codegen/core/src/main/java/software/amazon/smithy/python/codegen/SmithyPythonDependency.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public final class SmithyPythonDependency {
3333
*/
3434
public static final PythonDependency SMITHY_HTTP = new PythonDependency(
3535
"smithy_http",
36-
"~=0.1.0",
36+
"~=0.2.0",
3737
Type.DEPENDENCY,
3838
false);
3939

@@ -42,7 +42,7 @@ public final class SmithyPythonDependency {
4242
*/
4343
public static final PythonDependency AWS_CRT = new PythonDependency(
4444
"awscrt",
45-
">=0.23.10",
45+
"~=0.28.2",
4646
Type.DEPENDENCY,
4747
false);
4848

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "dependency",
5+
"description": "Bump `smithy-http` from `~=0.1.0` to `~=0.2.0`."
6+
}
7+
]
8+
}

packages/smithy-aws-core/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.1.1
4+
5+
### Dependencies
6+
* Bump `smithy-http` from `~=0.1.0` to `~=0.2.0`.
7+
38
## v0.1.0
49

510
### Breaking Changes

packages/smithy-aws-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"smithy-core~=0.1.0",
30-
"smithy-http~=0.1.0",
30+
"smithy-http~=0.2.0",
3131
"aws-sdk-signers~=0.1.0"
3232
]
3333

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
__version__ = "0.1.0"
4+
__version__ = "0.1.1"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "breaking",
5+
"description": "Update `AWSCRTHTTPClient` to integrate with the new AWS CRT async interfaces. ([#573](https://github.com/smithy-lang/smithy-python/pull/573)). The `AWSCRTHTTPResponse` constructor now accepts a `stream` argument of type `awscrt.aio.http.AIOHttpClientStreamUnified`. Additionally, the following classes were removed: `CRTResponseBody`, `CRTResponseFactory`, and `BufferableByteStream`."
6+
}
7+
]
8+
}

packages/smithy-http/.changes/next-release/smithy-http-breaking-20251017150112.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

packages/smithy-http/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.2.0
4+
5+
### Breaking Changes
6+
* Update `AWSCRTHTTPClient` to integrate with the new AWS CRT async interfaces. ([#573](https://github.com/smithy-lang/smithy-python/pull/573)). The `AWSCRTHTTPResponse` constructor now accepts a `stream` argument of type `awscrt.aio.http.AIOHttpClientStreamUnified`. Additionally, the following classes were removed: `CRTResponseBody`, `CRTResponseFactory`, and `BufferableByteStream`.
7+
38
## v0.1.0
49

510
### Breaking Changes

packages/smithy-http/src/smithy_http/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from . import interfaces
77
from .interfaces import FieldPosition
88

9-
__version__ = "0.1.0"
9+
__version__ = "0.2.0"
1010

1111

1212
class Field(interfaces.Field):

0 commit comments

Comments
 (0)