iris-pgwire 1.2.33__py3-none-any.whl → 1.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
iris_pgwire/__init__.py CHANGED
@@ -6,7 +6,7 @@ Based on the specification from docs/iris_pgwire_plan.md and proven patterns fro
6
6
  caretdev/sqlalchemy-iris.
7
7
  """
8
8
 
9
- __version__ = "1.2.33"
9
+ __version__ = "1.3.0"
10
10
  __author__ = "Thomas Dyar <thomas.dyar@intersystems.com>"
11
11
 
12
12
  # Don't import server/protocol in __init__ to avoid sys.modules conflicts
@@ -47,7 +47,7 @@ class Executor(Protocol):
47
47
  """Set the IRIS namespace for a specific session."""
48
48
  ...
49
49
 
50
- def close_session(self, session_id: str) -> None:
50
+ async def close_session(self, session_id: str) -> None:
51
51
  """Close resources for a specific session."""
52
52
  ...
53
53