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'