Version 0.1.5 0.1.5
authorThierry Florac <tflorac@ulthar.net>
Fri, 11 Jan 2019 13:52:29 +0100
changeset 23 99fb7f5fe348
parent 22 05aaf0acf4fb
child 24 36b9e48666ce
Version 0.1.5
buildout.cfg
docs/HISTORY.txt
setup.py
src/pyams_zmq.egg-info/PKG-INFO
src/pyams_zmq.egg-info/SOURCES.txt
src/pyams_zmq.egg-info/requires.txt
--- a/buildout.cfg	Thu Jan 10 17:00:00 2019 +0100
+++ b/buildout.cfg	Fri Jan 11 13:52:29 2019 +0100
@@ -21,6 +21,7 @@
 develop =
     .
     ../ext/lingua
+    ../pyams_utils
 
 parts =
     package
@@ -59,4 +60,4 @@
 eggs = pyams_zmq [test]
 
 [versions]
-pyams_zmq = 0.1.4
+pyams_zmq = 0.1.5
--- a/docs/HISTORY.txt	Thu Jan 10 17:00:00 2019 +0100
+++ b/docs/HISTORY.txt	Fri Jan 11 13:52:29 2019 +0100
@@ -1,6 +1,11 @@
 History
 =======
 
+0.1.5
+-----
+ - added ZMQ process started event
+ - notify event when ZMQ process is started
+
 0.1.4
 -----
  - install ZMQ IO loop on process startup
--- a/setup.py	Thu Jan 10 17:00:00 2019 +0100
+++ b/setup.py	Fri Jan 11 13:52:29 2019 +0100
@@ -22,7 +22,7 @@
 README = os.path.join(DOCS, 'README.txt')
 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
 
-version = '0.1.4'
+version = '0.1.5'
 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
 
 tests_require = []
@@ -56,6 +56,7 @@
       install_requires=[
           'setuptools',
           # -*- Extra requirements: -*-
+          'pyams_utils',
           'pyramid',
           'pyzmq',
           'tornado',
--- a/src/pyams_zmq.egg-info/PKG-INFO	Thu Jan 10 17:00:00 2019 +0100
+++ b/src/pyams_zmq.egg-info/PKG-INFO	Fri Jan 11 13:52:29 2019 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: pyams-zmq
-Version: 0.1.4
+Version: 0.1.5
 Summary: PyAMS package for 0MQ
 Home-page: http://hg.ztfy.org/pyams/pyams_zmq
 Author: Thierry Florac
@@ -11,6 +11,11 @@
         History
         =======
         
+        0.1.5
+        -----
+         - added ZMQ process started event
+         - notify event when ZMQ process is started
+        
         0.1.4
         -----
          - install ZMQ IO loop on process startup
--- a/src/pyams_zmq.egg-info/SOURCES.txt	Thu Jan 10 17:00:00 2019 +0100
+++ b/src/pyams_zmq.egg-info/SOURCES.txt	Fri Jan 11 13:52:29 2019 +0100
@@ -4,6 +4,7 @@
 docs/README.txt
 src/pyams_zmq/__init__.py
 src/pyams_zmq/handler.py
+src/pyams_zmq/interfaces.py
 src/pyams_zmq/process.py
 src/pyams_zmq/socket.py
 src/pyams_zmq.egg-info/PKG-INFO
@@ -15,7 +16,6 @@
 src/pyams_zmq.egg-info/requires.txt
 src/pyams_zmq.egg-info/top_level.txt
 src/pyams_zmq/doctests/README.txt
-src/pyams_zmq/interfaces/__init__.py
 src/pyams_zmq/tests/__init__.py
 src/pyams_zmq/tests/test_utilsdocs.py
 src/pyams_zmq/tests/test_utilsdocstrings.py
\ No newline at end of file
--- a/src/pyams_zmq.egg-info/requires.txt	Thu Jan 10 17:00:00 2019 +0100
+++ b/src/pyams_zmq.egg-info/requires.txt	Fri Jan 11 13:52:29 2019 +0100
@@ -1,4 +1,5 @@
 setuptools
+pyams_utils
 pyramid
 pyzmq
 tornado