From 2f5409b33b35c007fac093ebc7aa444cdf817bc3 Mon Sep 17 00:00:00 2001 From: Juan Jose Nicola Date: Wed, 28 Nov 2018 03:56:05 -0500 Subject: [PATCH] Prepare the ospd 1.3.2 release. * CHANGES: Updated. * ospd/__init__.py: Set version to 1.3.2. --- CHANGES | 14 ++++++++++++++ ospd/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index abf9ac03..4adb5840 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,20 @@ or get the entire source code repository and view log history: $ git clone https://github.com/greenbone/ospd.git $ cd ospd && git checkout ospd-1.3 && git log +ospd 1.3.2 (2018-11-28) + +This is the 1.3.2 release of the ospd module for the Greenbone Vulnerability +Manager (GVM) framework. + +This release includes an improvement in the connection handling. + +Many thanks to everyone who has contributed to this release: +Juan Jose Nicola and Michael Wiegand. + +Main changes since 1.3.1: +* The way connections are handled by the `handle_client_stream()` method has + been improved. + ospd 1.3.1 (2018-10-04) This is the 1.3.1 release of the ospd module for the Greenbone Vulnerability diff --git a/ospd/__init__.py b/ospd/__init__.py index a66d129d..190a3c1a 100644 --- a/ospd/__init__.py +++ b/ospd/__init__.py @@ -24,4 +24,4 @@ """ OSPd core module. """ -__version__ = '1.3.1' +__version__ = '1.3.2'