Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/aws-event-stream/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "aws-event-stream"
version = "0.1.0"
version = "0.0.1"
description = "Core Smithy components for AWS services and protocols."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
4 changes: 4 additions & 0 deletions packages/aws-event-stream/src/aws_event_stream/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

import importlib.metadata

__version__: str = importlib.metadata.version("aws-event-stream")
2 changes: 1 addition & 1 deletion packages/smithy-aws-core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "smithy-aws-core"
version = "0.1.0"
version = "0.0.1"
description = "Core Smithy components for AWS services and protocols."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
18 changes: 6 additions & 12 deletions packages/smithy-aws-core/src/smithy_aws_core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

import importlib.metadata

__version__: str = importlib.metadata.version("smithy-aws-core")
2 changes: 1 addition & 1 deletion packages/smithy-core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "smithy_core"
version = "0.1.0"
version = "0.0.1"
description = "Core components for implementing Smithy tooling in Python."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
4 changes: 4 additions & 0 deletions packages/smithy-core/src/smithy_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
from . import interfaces, rfc3986
from .exceptions import SmithyException

import importlib.metadata

__version__: str = importlib.metadata.version("smithy-core")


class HostType(Enum):
"""Enumeration of possible host types."""
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-event-stream/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "smithy-event-stream"
version = "0.1.0"
version = "0.0.1"
description = "Smithy event stream interfaces and core components."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

import importlib.metadata

__version__: str = importlib.metadata.version("smithy-event-stream")
2 changes: 1 addition & 1 deletion packages/smithy-http/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "smithy_http"
version = "0.1.0"
version = "0.0.1"
description = "HTTP components for Smithy tooling."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
4 changes: 4 additions & 0 deletions packages/smithy-http/src/smithy_http/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
from . import interfaces
from .interfaces import FieldPosition

import importlib.metadata

__version__: str = importlib.metadata.version("smithy-http")


class Field(interfaces.Field):
"""A name-value pair representing a single field in an HTTP Request or Response.
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-json/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "smithy-json"
version = "0.1.0"
version = "0.0.1"
description = "JSON serialization and deserialization support for Smithy tooling."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
4 changes: 4 additions & 0 deletions packages/smithy-json/src/smithy_json/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
from ._private.deserializers import JSONShapeDeserializer as _JSONShapeDeserializer
from ._private.serializers import JSONShapeSerializer as _JSONShapeSerializer

import importlib.metadata

__version__: str = importlib.metadata.version("smithy-json")


class JSONCodec(Codec):
"""A codec for converting shapes to/from JSON."""
Expand Down
12 changes: 6 additions & 6 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading