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 sdk/schemaregistry/azure-schemaregistry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.2.0 (Unreleased)
## 1.2.0 (2022-10-10)

This version and all future versions will require Python 3.7+, Python 3.6 is no longer supported.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ def get_schema(
@distributed_trace
def get_schema(self, *args: str, **kwargs: Any) -> Schema:
"""Gets a registered schema. There are two ways to call this method:

1) To get a registered schema by its unique ID, pass the `schema_id` parameter and any optional
keyword arguments. Azure Schema Registry guarantees that ID is unique within a namespace.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ async def get_schema(
@distributed_trace_async
async def get_schema(self, *args: str, **kwargs: Any) -> Schema:
"""Gets a registered schema. There are two ways to call this method:

1) To get a registered schema by its unique ID, pass the `schema_id` parameter and any optional
keyword arguments. Azure Schema Registry guarantees that ID is unique within a namespace.

Expand Down