diff --git a/AUTHORS b/AUTHORS index 447392b..3f85029 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,5 @@ Andreas Jaeger +Iswarya_Vakati Lisa Zangrando Vincent Llorens ervin diff --git a/ChangeLog b/ChangeLog index 743acc9..c6ec4d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,23 @@ CHANGES ======= -* use pbr fully and use postversioning +* Clean up oslo imports +* Update the Sphinx documentation +* fix packaging with docker and its documentation +* Distribute tabulate as part of Synergy +* Remove versions for required packages +* fix missing "requests" from the requirements +* Updated coverage configuration file +* fix docker packaging for CentOS +* fix wrong version of eventlet +* fix docs for packaging with Ubuntu +* fix to get the synergy version when packaging +* fix required packages when packaging + +1.2.0 +----- + +* use pbr fully for easier package building * RPM: don't output errors on uninstallation * Fix conf for AMQP virtual host * Added unit tests diff --git a/packaging/debian/changelog b/packaging/debian/changelog index 5897a49..42e4465 100755 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,17 @@ +python-synergy-service (1.2.0-1ubuntu1) unstable; urgency=low + + * use pbr fully for easier package building + * RPM: don't output errors on uninstallation + * Fix conf for AMQP virtual host + * Added unit tests + * Fixed destroy() method + * Fixed serializer + * Fixed logging for managers + * fix eventlet and dateutil required versions + * Fix requirement version pinning + + -- Vincent Llorens Wed, 09 Nov 2016 15:35:11 +0100 + python-synergy-service (1.1.0) unstable; urgency=low * Improve Synergy serialization capabilities diff --git a/packaging/rpm/python-synergy.spec b/packaging/rpm/python-synergy.spec index 56d7a51..2e4e68e 100755 --- a/packaging/rpm/python-synergy.spec +++ b/packaging/rpm/python-synergy.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: python-synergy-service -Version: 1.1.0 +Version: 1.2.0 Release: 1%{?dist} Summary: Synergy service @@ -92,6 +92,17 @@ if [ "$1" = 0 ]; then fi %changelog +* Wed Nov 09 2016 Vincent Llorens - 1.2.0-1 +- use pbr fully for easier package building +- RPM: don't output errors on uninstallation +- Fix conf for AMQP virtual host +- Added unit tests +- Fixed destroy() method +- Fixed serializer +- Fixed logging for managers +- fix eventlet and dateutil required versions +- Fix requirement version pinning + * Wed Sep 21 2016 Ervin Konomi