Compare commits

...

2 Commits
0.14 ... 0.15

Author SHA1 Message Date
Romuald Juchnowicz-Bierbasz
ca8d0dfaf4 Increment version, add changelog 2019-03-08 10:19:43 +01:00
Romuald Juchnowicz-Bierbasz
73bc9aa8ec SDK-2623: Call shutdown on socket close 2019-03-08 10:16:57 +01:00
3 changed files with 4 additions and 2 deletions

View File

@@ -34,5 +34,7 @@ pytest
## Changelog
### 0.15
* `shutdown()` is called on socket disconnection.
### 0.14
* Added required version parameter to Plugin constructor.

View File

@@ -39,7 +39,7 @@ class Plugin():
self._notification_client = NotificationClient(self._writer, encoder)
def eof_handler():
self._active = False
self._shutdown()
self._server.register_eof(eof_handler)
# internal

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="galaxy.plugin.api",
version="0.14",
version="0.15",
description="Galaxy python plugin API",
author='Galaxy team',
author_email='galaxy@gog.com',