File tree Expand file tree Collapse file tree 13 files changed +38
-24
lines changed Expand file tree Collapse file tree 13 files changed +38
-24
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " aws-event-stream"
3- version = " 0.1.0 "
3+ version = " 0.0.1 "
44description = " Core Smithy components for AWS services and protocols."
55readme = " README.md"
66requires-python = " >=3.12"
Original file line number Diff line number Diff line change 11# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22# SPDX-License-Identifier: Apache-2.0
3+
4+ import importlib .metadata
5+
6+ __version__ : str = importlib .metadata .version ("aws-event-stream" )
Original file line number Diff line number Diff line change 11[project ]
22name = " smithy-aws-core"
3- version = " 0.1.0 "
3+ version = " 0.0.1 "
44description = " Core Smithy components for AWS services and protocols."
55readme = " README.md"
66requires-python = " >=3.12"
Original file line number Diff line number Diff line change 1- # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2- #
3- # Licensed under the Apache License, Version 2.0 (the "License"). You
4- # may not use this file except in compliance with the License. A copy of
5- # the License is located at
6- #
7- # http://aws.amazon.com/apache2.0/
8- #
9- # or in the "license" file accompanying this file. This file is
10- # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11- # ANY KIND, either express or implied. See the License for the specific
12- # language governing permissions and limitations under the License.
1+ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ import importlib .metadata
5+
6+ __version__ : str = importlib .metadata .version ("smithy-aws-core" )
Original file line number Diff line number Diff line change 11[project ]
22name = " smithy_core"
3- version = " 0.1.0 "
3+ version = " 0.0.1 "
44description = " Core components for implementing Smithy tooling in Python."
55readme = " README.md"
66requires-python = " >=3.12"
Original file line number Diff line number Diff line change 88from . import interfaces , rfc3986
99from .exceptions import SmithyException
1010
11+ import importlib .metadata
12+
13+ __version__ : str = importlib .metadata .version ("smithy-core" )
14+
1115
1216class HostType (Enum ):
1317 """Enumeration of possible host types."""
Original file line number Diff line number Diff line change 11[project ]
22name = " smithy-event-stream"
3- version = " 0.1.0 "
3+ version = " 0.0.1 "
44description = " Smithy event stream interfaces and core components."
55readme = " README.md"
66requires-python = " >=3.12"
Original file line number Diff line number Diff line change 11# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22# SPDX-License-Identifier: Apache-2.0
3+
4+ import importlib .metadata
5+
6+ __version__ : str = importlib .metadata .version ("smithy-event-stream" )
Original file line number Diff line number Diff line change 11[project ]
22name = " smithy_http"
3- version = " 0.1.0 "
3+ version = " 0.0.1 "
44description = " HTTP components for Smithy tooling."
55readme = " README.md"
66requires-python = " >=3.12"
Original file line number Diff line number Diff line change 66from . import interfaces
77from .interfaces import FieldPosition
88
9+ import importlib .metadata
10+
11+ __version__ : str = importlib .metadata .version ("smithy-http" )
12+
913
1014class Field (interfaces .Field ):
1115 """A name-value pair representing a single field in an HTTP Request or Response.
You can’t perform that action at this time.
0 commit comments