From 708f29fecb6a6bcd94da455745b6821ff252c2d6 Mon Sep 17 00:00:00 2001 From: taras Date: Mon, 7 Oct 2024 21:53:14 +0200 Subject: [PATCH] Prepare 1.4.0 release --- HISTORY.rst | 7 +++++++ picows/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 7ecd64f..8f3b2cb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,6 +5,13 @@ picows Release History :depth: 1 :local: +1.4.0 (2024-10-07) +------------------ + +* Added optional automatic ping-pong mechanism to detect broken connection +* Added an option to WSTransport.disconnect to disconnect immediately without flushing send buffers +* Re-structured documentation, added 'Topic guides' section + 1.3.0 (2024-10-01) ------------------ diff --git a/picows/__init__.py b/picows/__init__.py index 7764bac..930ef46 100644 --- a/picows/__init__.py +++ b/picows/__init__.py @@ -25,5 +25,5 @@ 'PICOWS_DEBUG_LL' ] -__version__ = "1.3.0" +__version__ = "1.4.0" __author__ = "Taras Kozlov"