Skip to content

Commit 1f86945

Browse files
Release 2026-02-24
1 parent 027ebb5 commit 1f86945

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
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.3.0",
25+
"~=0.4.0",
2626
PythonDependency.Type.DEPENDENCY,
2727
false);
2828
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.3.0",
81+
"~=0.4.0",
8282
Type.DEPENDENCY,
8383
false);
8484

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "enhancement",
5+
"description": "Aligned with service client minor version"
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.4.0
4+
5+
### Enhancements
6+
* Aligned with service client minor version
7+
38
## v0.3.0
49

510
### Dependencies
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.3.0"
4+
__version__ = "0.4.0"

0 commit comments

Comments
 (0)