diff --git a/HISTORY.rst b/HISTORY.rst index d1bd4b5..40f5921 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,10 +5,11 @@ picows Release History :depth: 1 :local: -1.3.0b1 +1.3.0 (2024-10-01) * Change WSUpgradeRequest.headers type from Dict to CIMultiDict -* Fix: +* Fix: ws_connect is ignoring URI query parameters +* Fix: WSUpgradeRequest.version field is always None 1.2.2 (2024-09-13) ------------------ diff --git a/picows/__init__.py b/picows/__init__.py index 11329c7..7764bac 100644 --- a/picows/__init__.py +++ b/picows/__init__.py @@ -25,5 +25,5 @@ 'PICOWS_DEBUG_LL' ] -__version__ = "1.2.2" +__version__ = "1.3.0" __author__ = "Taras Kozlov"