Release 1.1.0

This commit is contained in:
Kenneth Giusti 2014-07-14 11:18:52 -04:00
parent 1d900b0051
commit c49d818068
4 changed files with 12 additions and 4 deletions

View File

@ -3,9 +3,12 @@ Known Bugs:
None.
Release 1.1.0 Notes:
--------------------
Added: Gordon Sim added support for configuring sender settle modes.
Release 1.0.1 Notes:
--------------------
Fixed: No further endpoint callbacks once application destroys it.
Fixed: aborting pending message must not call back until Connection.process() is called.
Added: message send timeout.

View File

@ -17,10 +17,10 @@
# specific language governing permissions and limitations
# under the License.
#
from distutils.core import setup
from setuptools import setup
setup(name="pyngus",
version="1.0.0",
version="1.1.0",
author="kgiusti",
author_email="kgiusti@apache.org",
packages=["pyngus"],
@ -28,6 +28,7 @@ setup(name="pyngus",
description="Callback API implemented over Proton",
url="https://github.com/kgiusti/pyngus",
license="Apache Software License",
# install_requires=['python-qpid-proton>=0.7,<0.8'],
classifiers=["License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",

View File

@ -1,3 +1,7 @@
pep8>=1.4.5
pyflakes>=0.7.3
flake8>=2.1.0
# This requires that qpid-proton-c-devel packages
# are installed on your system:
python-qpid-proton>=0.7,<0.8

View File

@ -1,7 +1,7 @@
[tox]
# Proton does not support Python3 yet: see Jira PROTON-490
#envlist = py27,py33,pep8
envlist = py27,pep8
envlist = py26,py27,pep8
[testenv]
deps = -r{toxinidir}/tests/python/test-requirements.txt