Skip to content

Commit f5da49f

Browse files
authored
Prepare smithy-core 0.2.0 release (smithy-lang#604)
1 parent 12af0f3 commit f5da49f

File tree

24 files changed

+113
-27
lines changed

24 files changed

+113
-27
lines changed

codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsPythonDependency.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private AwsPythonDependency() {}
2222
*/
2323
public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency(
2424
"smithy_aws_core",
25-
"~=0.1.0",
25+
"~=0.2.0",
2626
PythonDependency.Type.DEPENDENCY,
2727
false);
2828
}

codegen/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515

1616
allprojects {
1717
group = "software.amazon.smithy.python"
18-
version = "0.0.1"
18+
version = "0.1.0"
1919
}

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public final class SmithyPythonDependency {
2222
*/
2323
public static final PythonDependency SMITHY_CORE = new PythonDependency(
2424
"smithy_core",
25-
"~=0.1.0",
25+
"~=0.2.0",
2626
Type.DEPENDENCY,
2727
false);
2828

@@ -33,7 +33,7 @@ public final class SmithyPythonDependency {
3333
*/
3434
public static final PythonDependency SMITHY_HTTP = new PythonDependency(
3535
"smithy_http",
36-
"~=0.2.0",
36+
"~=0.3.0",
3737
Type.DEPENDENCY,
3838
false);
3939

@@ -60,7 +60,7 @@ public final class SmithyPythonDependency {
6060
*/
6161
public static final PythonDependency SMITHY_JSON = new PythonDependency(
6262
"smithy_json",
63-
"~=0.1.0",
63+
"~=0.2.0",
6464
Type.DEPENDENCY,
6565
false);
6666

@@ -69,7 +69,7 @@ public final class SmithyPythonDependency {
6969
*/
7070
public static final PythonDependency SMITHY_AWS_EVENT_STREAM = new PythonDependency(
7171
"smithy_aws_event_stream",
72-
"~=0.1.0",
72+
"~=0.2.0",
7373
Type.DEPENDENCY,
7474
false);
7575

@@ -78,7 +78,7 @@ public final class SmithyPythonDependency {
7878
*/
7979
public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency(
8080
"smithy_aws_core",
81-
"~=0.1.0",
81+
"~=0.2.0",
8282
Type.DEPENDENCY,
8383
false);
8484

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "dependency",
5+
"description": "Bump `smithy-json` from `~=0.1.0` to `~=0.2.0`."
6+
},
7+
{
8+
"type": "dependency",
9+
"description": "Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`."
10+
},
11+
{
12+
"type": "dependency",
13+
"description": "Bump `smithy-aws-event-stream` from `~=0.1.0` to `~=0.2.0`."
14+
},
15+
{
16+
"type": "dependency",
17+
"description": "Bump `smithy-http` from `~=0.2.0` to `~=0.3.0`."
18+
}
19+
]
20+
}

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.2.0
4+
5+
### Dependencies
6+
* Bump `smithy-json` from `~=0.1.0` to `~=0.2.0`.
7+
* Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`.
8+
* Bump `smithy-aws-event-stream` from `~=0.1.0` to `~=0.2.0`.
9+
* Bump `smithy-http` from `~=0.2.0` to `~=0.3.0`.
10+
311
## v0.1.1
412

513
### Dependencies

packages/smithy-aws-core/pyproject.toml

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

@@ -45,10 +45,10 @@ path = "src/smithy_aws_core/__init__.py"
4545

4646
[project.optional-dependencies]
4747
eventstream = [
48-
"smithy-aws-event-stream~=0.1.0"
48+
"smithy-aws-event-stream~=0.2.0"
4949
]
5050
json = [
51-
"smithy-json~=0.1.0"
51+
"smithy-json~=0.2.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.1.1"
4+
__version__ = "0.2.0"
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-core` from `~=0.1.0` to `~=0.2.0`."
6+
}
7+
]
8+
}

packages/smithy-aws-event-stream/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+
### Dependencies
6+
* Bump `smithy-core` from `~=0.1.0` to `~=0.2.0`.
7+
38
## v0.1.0
49

510
### Breaking Changes

packages/smithy-aws-event-stream/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
"Topic :: Software Development :: Libraries"
2727
]
2828
dependencies = [
29-
"smithy-core~=0.1.0",
29+
"smithy-core~=0.2.0",
3030
]
3131

3232
[project.urls]

0 commit comments

Comments
 (0)