Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private AwsPythonDependency() {}
*/
public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency(
"smithy_aws_core",
"~=0.2.0",
"~=0.3.0",
PythonDependency.Type.DEPENDENCY,
false);
}
2 changes: 1 addition & 1 deletion codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@

allprojects {
group = "software.amazon.smithy.python"
version = "0.1.0"
version = "0.2.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public final class SmithyPythonDependency {
*/
public static final PythonDependency SMITHY_CORE = new PythonDependency(
"smithy_core",
"~=0.2.0",
"~=0.3.0",
Type.DEPENDENCY,
false);

Expand Down Expand Up @@ -78,7 +78,7 @@ public final class SmithyPythonDependency {
*/
public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency(
"smithy_aws_core",
"~=0.2.0",
"~=0.3.0",
Type.DEPENDENCY,
false);

Expand Down
8 changes: 8 additions & 0 deletions packages/smithy-aws-core/.changes/0.3.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"changes": [
{
"type": "dependency",
"description": "Bump `smithy-core` from `~=0.2.0` to `~=0.3.0`."
}
]
}
5 changes: 5 additions & 0 deletions packages/smithy-aws-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.3.0

### Dependencies
* Bump `smithy-core` from `~=0.2.0` to `~=0.3.0`.

## v0.2.0

### Dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-aws-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
"Topic :: Software Development :: Libraries"
]
dependencies = [
"smithy-core~=0.2.0",
"smithy-core~=0.3.0",
"smithy-http~=0.3.0",
"aws-sdk-signers~=0.1.0"
]
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-aws-core/src/smithy_aws_core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

__version__ = "0.2.0"
__version__ = "0.3.0"
8 changes: 8 additions & 0 deletions packages/smithy-aws-event-stream/.changes/0.2.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"changes": [
{
"type": "dependency",
"description": "Removed strict pinning on `smithy-core` in favor of client managed versions."
}
]
}
5 changes: 5 additions & 0 deletions packages/smithy-aws-event-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.2.1

### Dependencies
* Removed strict pinning on `smithy-core` in favor of client managed versions.

## v0.2.0

### Dependencies
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

__version__ = "0.2.0"
__version__ = "0.2.1"
12 changes: 12 additions & 0 deletions packages/smithy-core/.changes/0.3.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"changes": [
{
"type": "enhancement",
"description": "Improved default error message for instances of ClientTimeoutError."
},
{
"type": "breaking",
"description": "Refactored `resolve_retry_strategy` to avoid code duplication per operation."
}
]
}

This file was deleted.

8 changes: 8 additions & 0 deletions packages/smithy-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v0.3.0

### Breaking Changes
* Refactored `resolve_retry_strategy` to avoid code duplication per operation.

### Enhancements
* Improved default error message for instances of ClientTimeoutError.

## v0.2.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-core/src/smithy_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from . import interfaces, rfc3986
from .exceptions import SmithyError

__version__ = "0.2.0"
__version__ = "0.3.0"


class HostType(Enum):
Expand Down
12 changes: 12 additions & 0 deletions packages/smithy-http/.changes/0.3.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"changes": [
{
"type": "bugfix",
"description": "Fixed empty error messaging for CRT-based timeout errors."
},
{
"type": "dependency",
"description": "Removed strict pinning on `smithy-core` in favor of client managed versions."
}
]
}

This file was deleted.

8 changes: 8 additions & 0 deletions packages/smithy-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v0.3.1

### Bug fixes
* Fixed empty error messaging for CRT-based timeout errors.

### Dependencies
* Removed strict pinning on `smithy-core` in favor of client managed versions.

## v0.3.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-http/src/smithy_http/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from . import interfaces
from .interfaces import FieldPosition

__version__ = "0.3.0"
__version__ = "0.3.1"


class Field(interfaces.Field):
Expand Down
8 changes: 8 additions & 0 deletions packages/smithy-json/.changes/0.2.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"changes": [
{
"type": "dependency",
"description": "Removed strict pinning on `smithy-core` in favor of client managed versions."
}
]
}
5 changes: 5 additions & 0 deletions packages/smithy-json/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.2.1

### Dependencies
* Removed strict pinning on `smithy-core` in favor of client managed versions.

## v0.2.0

### Dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-json/src/smithy_json/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from ._private.serializers import JSONShapeSerializer as _JSONShapeSerializer
from .settings import JSONSettings

__version__ = "0.2.0"
__version__ = "0.2.1"
__all__ = ("JSONCodec", "JSONDocument", "JSONSettings")


Expand Down
Loading