Skip to content

Commit 28bda97

Browse files
committed
Revert 0.2.2 as it breaks openapi conversion
1 parent 1607c15 commit 28bda97

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "utcp"
7-
version = "0.2.2"
7+
version = "0.2.3"
88
authors = [
99
{ name = "Razvan-Ion Radulescu" },
1010
{ name = "Andrei-Stefan Ghiurtu" },

src/utcp/client/openapi_converter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ def _resolve_ref(self, ref: str) -> Dict[str, Any]:
139139

140140
def _resolve_schema(self, schema: Dict[str, Any]) -> Dict[str, Any]:
141141
"""Recursively resolves all $refs in a schema object."""
142-
return schema
143142
if isinstance(schema, dict):
144143
if "$ref" in schema:
145144
resolved_ref = self._resolve_ref(schema["$ref"])

src/utcp/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import tomli
33
from pathlib import Path
44

5-
__version__ = "0.2.2"
5+
__version__ = "0.2.3"
66
try:
77
__version__ = version("utcp")
88
except PackageNotFoundError:

0 commit comments

Comments
 (0)