Skip to content

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
etrepum committed Oct 23, 2016
1 parent cc64e57 commit 684a68a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGES.txt
@@ -1,11 +1,13 @@
Version 0.9.0 released 2016-10-23
Version 0.9.1 released 2016-10-23

* Allow (Python 2) long for fd
https://github.com/xattr/xattr/pull/51
* Fix Python 3 bytes handling in xattr.tool
https://github.com/xattr/xattr/pull/50
* Use cffi 1.X features to build native module for faster import
https://github.com/xattr/xattr/pull/47
* NOTE: Version 0.9.0 is the same, was momentarily uploaded with
incomplete CHANGES.txt

Version 0.8.0 released 2016-02-28

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@

from setuptools import setup

VERSION = '0.9.0'
VERSION = '0.9.1'
DESCRIPTION = "Python wrapper for extended filesystem attributes"
LONG_DESCRIPTION = """
Extended attributes extend the basic attributes of files and directories
Expand Down
2 changes: 1 addition & 1 deletion xattr/__init__.py
Expand Up @@ -7,7 +7,7 @@
that exposes these extended attributes.
"""

__version__ = '0.9.0'
__version__ = '0.9.1'

from .compat import integer_types
from .lib import (XATTR_NOFOLLOW, XATTR_CREATE, XATTR_REPLACE,
Expand Down

0 comments on commit 684a68a

Please sign in to comment.