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.1.0",
"~=0.2.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.0.1"
version = "0.1.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.1.0",
"~=0.2.0",
Type.DEPENDENCY,
false);

Expand All @@ -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);

Expand All @@ -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);

Expand All @@ -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);

Expand All @@ -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);

Expand Down
20 changes: 20 additions & 0 deletions packages/smithy-aws-core/.changes/0.2.0.json
Original file line number Diff line number Diff line change
@@ -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`."
}
]
}
8 changes: 8 additions & 0 deletions packages/smithy-aws-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions packages/smithy-aws-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]

Expand All @@ -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]
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.1.1"
__version__ = "0.2.0"
8 changes: 8 additions & 0 deletions packages/smithy-aws-event-stream/.changes/0.2.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.1.0` to `~=0.2.0`."
}
]
}
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.0

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

## v0.1.0

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-aws-event-stream/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.1.0",
"smithy-core~=0.2.0",
]

[project.urls]
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.1.0"
__version__ = "0.2.0"
8 changes: 8 additions & 0 deletions packages/smithy-core/.changes/0.2.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"changes": [
{
"type": "feature",
"description": "Added support for `standard` retry mode."
}
]
}

This file was deleted.

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

## v0.2.0

### Features
* Added support for `standard` retry mode.

## v0.1.1

### Bug fixes
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.1.1"
__version__ = "0.2.0"


class HostType(Enum):
Expand Down
16 changes: 16 additions & 0 deletions packages/smithy-http/.changes/0.3.0.json
Original file line number Diff line number Diff line change
@@ -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`."
}
]
}

This file was deleted.

11 changes: 11 additions & 0 deletions packages/smithy-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-http/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.1.0",
"smithy-core~=0.2.0",
]

[project.urls]
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.2.1"
__version__ = "0.3.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I feel like we may also want to have a changelong entry for #590. Not sure if that was a miss in the original PR or intentional.



class Field(interfaces.Field):
Expand Down
8 changes: 8 additions & 0 deletions packages/smithy-json/.changes/0.2.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.1.0` to `~=0.2.0`."
}
]
}
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.0

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

## v0.1.0

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-json/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ classifiers = [
]
dependencies = [
"ijson>=3.3.0",
"smithy-core~=0.1.0",
"smithy-core~=0.2.0",
]

[project.urls]
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.1.0"
__version__ = "0.2.0"
__all__ = ("JSONCodec", "JSONDocument", "JSONSettings")


Expand Down
Loading