summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2021-11-19 22:28:10 -0800
committerBob Ippolito <bob@redivi.com>2021-11-19 22:28:10 -0800
commitdc252a96683ab4f1227f30b80df476143052dd05 (patch)
tree3ba2348c49cedf2fcdad306fc85d262ea347fd81
parentd0746cc87cb01e30280e5e5106c426e1909f7a45 (diff)
downloadxattr-github-actions.tar.gz
-rw-r--r--CHANGES.txt9
-rw-r--r--setup.py2
-rw-r--r--xattr/__init__.py2
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 5192a73..0db3bd2 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,12 @@
+Version 0.9.8 released 2021-11-19
+
+* Update build to use Github Actions
+ https://github.com/xattr/xattr/pull/95
+* Various dump related fixes
+ https://github.com/xattr/xattr/pull/93
+* Fix classifiers list
+ https://github.com/xattr/xattr/pull/89
+
Version 0.9.7 released 2019-12-02
* Fix xattr().update() in Python 3
diff --git a/setup.py b/setup.py
index d23d1ae..928ab2a 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ import sys
from setuptools import setup
-VERSION = '0.9.7'
+VERSION = '0.9.8'
DESCRIPTION = "Python wrapper for extended filesystem attributes"
LONG_DESCRIPTION = """
Extended attributes extend the basic attributes of files and directories
diff --git a/xattr/__init__.py b/xattr/__init__.py
index 50780b4..4e5a517 100644
--- a/xattr/__init__.py
+++ b/xattr/__init__.py
@@ -7,7 +7,7 @@ The xattr type wraps a path or file descriptor with a dict-like interface
that exposes these extended attributes.
"""
-__version__ = '0.9.7'
+__version__ = '0.9.8'
from .compat import integer_types
from .lib import (XATTR_NOFOLLOW, XATTR_CREATE, XATTR_REPLACE,