Skip to content

Commit 1b84d4b

Browse files
SamRemisnateprewitt
andcommitted
Prepare release for bugfixes (#593)
Commit preparing changelog entries to release two bugfixes: adding the port to the host header to the CRT HTTP client and fixing a typo for the shapeId of eventHeaders in smithy-core --------- Co-authored-by: Nate Prewitt <[email protected]>
1 parent 6b05c41 commit 1b84d4b

File tree

7 files changed

+28
-6
lines changed

7 files changed

+28
-6
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "bugfix",
5+
"description": "Fix incorrect header casing for the shape id of eventHeaders."
6+
}
7+
]
8+
}

packages/smithy-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.1.1
4+
5+
### Bug fixes
6+
* Fix incorrect header casing for the shape id of eventHeaders.
7+
38
## v0.1.0
49

510
### Breaking Changes

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.1.0"
11+
__version__ = "0.1.1"
1212

1313

1414
class HostType(Enum):
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "bugfix",
5+
"description": "Add port to CRT HTTP client's host header."
6+
}
7+
]
8+
}

packages/smithy-http/.changes/next-release/smithy-http-bugfix-20251017171341.json

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

packages/smithy-http/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.1
4+
5+
### Bug fixes
6+
* Add port to CRT HTTP client's host header.
7+
38
## v0.2.0
49

510
### Breaking Changes

packages/smithy-http/src/smithy_http/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from . import interfaces
77
from .interfaces import FieldPosition
88

9-
__version__ = "0.2.0"
9+
__version__ = "0.2.1"
1010

1111

1212
class Field(interfaces.Field):

0 commit comments

Comments
 (0)