1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
========
PyXRootD
========
Release Notes
=============
-------------
Version 0.3.0
-------------
+ **New features**
* Improve integration with xrootd 4.x CopyProcess API by passing to python
all of the result dictionaties. This involves one API change, where the
CopyProcess.run method now returns a tuple (Status, [Results]) instead
of just Status.
+ Major bug fixes
* Fix memory leaks by doing proper reference counting of objects created
within C++ code.
* Consistently create the URL objects from urls represented as strings.
-------------
Version 0.2.0
-------------
+ **New features**
* Move copy process to xrootd4 API
* Move file and filesystem to xrootd4 API
* Implement file.fcntl and file.visa
+ Major bug fixes
* Release the GIL while running copy jobs to allow other Python threads to run
+ **Miscellaneous**
* Cleanup of compilation scripts
-------------
Version 0.1.3
-------------
+ **Minor bug fixes**
* Make the MkDirFlags.MAKEPATH flag work (issue #6)
* Fix a segfault when listing invalid directory (issues #3 and #4)
* Fix a SystemError exception occuring when trying to copy a file (issue #2)
+ **Miscellaneous**
* Fix file permissions
|