From aedec54e7a8eac1dcfb96881c45e79117acf355e Mon Sep 17 00:00:00 2001 From: Jason Gunthorpe Date: Mon, 1 Aug 2016 21:47:04 -0600 Subject: [PATCH] Version 1.0 --- debian/changelog | 6 ++++++ doc/release-1.0.rst | 12 ++++++++++++ doc/releases.rst | 1 + python-rdma.spec | 2 +- rdma/__init__.py | 2 +- 5 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 doc/release-1.0.rst diff --git a/debian/changelog b/debian/changelog index f49a222..efd3775 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-rdma (1.0-1) unstable; urgency=low + + * Various bug fixes + + -- Jason Gunthorpe Mon, 1 Aug 2016 21:43:26 -0600 + python-rdma (0.3-1) unstable; urgency=low * Various bug fixes diff --git a/doc/release-1.0.rst b/doc/release-1.0.rst new file mode 100644 index 0000000..82952f1 --- /dev/null +++ b/doc/release-1.0.rst @@ -0,0 +1,12 @@ +Version 1.0 +=========== + +Notable Features/Improvements: + +- Use of Cython instead of Pyrex, this should not be end-user visible. +- ExtSpeed support + +ibtool: + +- Add `ibtool decode_mad' can automatically handle common headers,umad, LRH, + GRH, and BTH diff --git a/doc/releases.rst b/doc/releases.rst index 8cea550..4bf50b1 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -2,6 +2,7 @@ Release Notes =============== +.. include:: release-1.0.rst .. include:: release-0.3.rst .. include:: release-0.2.rst .. include:: release-0.1.rst diff --git a/python-rdma.spec b/python-rdma.spec index aa5c170..7425e92 100644 --- a/python-rdma.spec +++ b/python-rdma.spec @@ -1,5 +1,5 @@ Name: python-rdma -Version: 0.3 +Version: 1.0 Release: 1el6 Summary: RDMA functionality for python diff --git a/rdma/__init__.py b/rdma/__init__.py index 1f061d0..1727e43 100644 --- a/rdma/__init__.py +++ b/rdma/__init__.py @@ -3,7 +3,7 @@ import os import os.path -__version__ = "0.3"; +__version__ = "1.0"; class RDMAError(Exception): '''General exception class for RDMA related errors.'''