Skip to content

Commit aedec54

Browse files
committed
Version 1.0
1 parent 55d5976 commit aedec54

File tree

5 files changed

+21
-2
lines changed

5 files changed

+21
-2
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
python-rdma (1.0-1) unstable; urgency=low
2+
3+
* Various bug fixes
4+
5+
-- Jason Gunthorpe <[email protected]> Mon, 1 Aug 2016 21:43:26 -0600
6+
17
python-rdma (0.3-1) unstable; urgency=low
28

39
* Various bug fixes

doc/release-1.0.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Version 1.0
2+
===========
3+
4+
Notable Features/Improvements:
5+
6+
- Use of Cython instead of Pyrex, this should not be end-user visible.
7+
- ExtSpeed support
8+
9+
ibtool:
10+
11+
- Add `ibtool decode_mad' can automatically handle common headers,umad, LRH,
12+
GRH, and BTH

doc/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Release Notes
33
===============
44

5+
.. include:: release-1.0.rst
56
.. include:: release-0.3.rst
67
.. include:: release-0.2.rst
78
.. include:: release-0.1.rst

python-rdma.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: python-rdma
2-
Version: 0.3
2+
Version: 1.0
33
Release: 1el6
44
Summary: RDMA functionality for python
55

rdma/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
import os.path
55

6-
__version__ = "0.3";
6+
__version__ = "1.0";
77

88
class RDMAError(Exception):
99
'''General exception class for RDMA related errors.'''

0 commit comments

Comments
 (0)