Skip to content

Commit 4bf9860

Browse files
committed
Release: smithy-core-0.3.0
1 parent 142a92c commit 4bf9860

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "enhancement",
5+
"description": "Improved default error message for instances of ClientTimeoutError."
6+
},
7+
{
8+
"type": "breaking",
9+
"description": "Refactored `resolve_retry_strategy` to avoid code duplication per operation."
10+
}
11+
]
12+
}

packages/smithy-core/.changes/next-release/smithy-core-enhancement-20251124183509.json

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

packages/smithy-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.3.0
4+
5+
### Breaking Changes
6+
* Refactored `resolve_retry_strategy` to avoid code duplication per operation.
7+
8+
### Enhancements
9+
* Improved default error message for instances of ClientTimeoutError.
10+
311
## v0.2.0
412

513
### Features

packages/smithy-core/src/smithy_core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from . import interfaces, rfc3986
99
from .exceptions import SmithyError
1010

11-
__version__ = "0.2.0"
11+
__version__ = "0.3.0"
1212

1313

1414
class HostType(Enum):

0 commit comments

Comments
 (0)