From ac8cbd3f8aa20e396f28919d10c8cf351576c433 Mon Sep 17 00:00:00 2001 From: taras Date: Tue, 1 Oct 2024 12:11:17 +0200 Subject: [PATCH] Prepare 1.3.0 release --- HISTORY.rst | 5 +++-- picows/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) 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"