Skip to content

Commit 2a919c8

Browse files
committed
release: smithy-aws-core v0.1.0
- Bump version to 0.1.0 - Update changelog entries
1 parent 4ba96cc commit 2a919c8

6 files changed

Lines changed: 26 additions & 14 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "breaking",
5+
"description": "Updated sigv4 auth resolution and identity providers to the new transport-agnostic interfaces."
6+
},
7+
{
8+
"type": "feature",
9+
"description": "Added a hand-written implementation for the `restJson1` protocol."
10+
}
11+
]
12+
}

packages/smithy-aws-core/.changes/next-release/smithy-aws-core-breaking-20250904125854.json

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

packages/smithy-aws-core/.changes/next-release/smithy-aws-core-feature-20250904125834.json

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

packages/smithy-aws-core/CHANGELOG.md

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

3+
## v0.1.0
4+
5+
### Breaking Changes
6+
* Updated sigv4 auth resolution and identity providers to the new transport-agnostic interfaces.
7+
8+
### Features
9+
* Added a hand-written implementation for the `restJson1` protocol.
10+
311
## v0.0.3
412

513
### Bug fixes

packages/smithy-aws-core/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ classifiers = [
2626
"Topic :: Software Development :: Libraries"
2727
]
2828
dependencies = [
29-
"smithy-core",
30-
"smithy-http",
31-
"aws-sdk-signers"
29+
"smithy-core~=0.1.0",
30+
"smithy-http~=0.1.0",
31+
"aws-sdk-signers~=0.1.0"
3232
]
3333

3434
[project.urls]
@@ -45,10 +45,10 @@ path = "src/smithy_aws_core/__init__.py"
4545

4646
[project.optional-dependencies]
4747
eventstream = [
48-
"smithy-aws-event-stream"
48+
"smithy-aws-event-stream~=0.1.0"
4949
]
5050
json = [
51-
"smithy-json"
51+
"smithy-json~=0.1.0"
5252
]
5353

5454
[tool.hatch.build]
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.0.3"
4+
__version__ = "0.1.0"

0 commit comments

Comments
 (0)