-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Iustin Pop <[email protected]>
- Loading branch information
Showing
4 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,27 @@ | ||
News | ||
==== | ||
|
||
Version 0.6.0 | ||
------------- | ||
|
||
*released Mon, 23 Jan 2017* | ||
|
||
Bugfix and feature release (hence the version bump). | ||
|
||
The main change is to the implementation of how attributes are listed | ||
and read. This was done due to existing race issues when attributes are | ||
modified while being read (github issue #12), but basically all various | ||
internal paths that dealt with retrieving an attribute value or listing | ||
attributes were unified in a single helper function that does handle | ||
such concurrent modifications. As a side effect, the size of the buffers | ||
used for such reads have changed, which (depending on attribute value) | ||
might change the trade-off between number of syscalls done and memory | ||
usage. | ||
|
||
As feature release, OSX support was contributed by Adam Knight | ||
<[email protected]>, thanks a lot! I don't have access to OSX so the testing | ||
for it is done via Travis builds; please report any issues. | ||
|
||
Version 0.5.6 | ||
------------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
long_desc = """This is a C extension module for Python which | ||
implements extended attributes manipulation. It is a wrapper on top | ||
of the attr C library - see attr(5).""" | ||
version = "0.5.6" | ||
version = "0.6.0" | ||
author = "Iustin Pop" | ||
author_email = "[email protected]" | ||
libraries = [] | ||
|