summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt4
-rw-r--r--fs/__init__.py2
-rw-r--r--setup.py2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index dab45a1..b1ae497 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -94,3 +94,7 @@
* Fixed a hang bug in readline
* Added copydir_progress to fs.utils
+0.5.2:
+
+ * Added utils.open_atomic_write
+
diff --git a/fs/__init__.py b/fs/__init__.py
index 4513074..a0d9975 100644
--- a/fs/__init__.py
+++ b/fs/__init__.py
@@ -15,7 +15,7 @@ implementations of this interface such as:
"""
-__version__ = "0.5.1"
+__version__ = "0.5.2"
__author__ = "Will McGugan (will@willmcgugan.com)"
# provide these by default so people can use 'fs.path.basename' etc.
diff --git a/setup.py b/setup.py
index 0245e94..5b7df93 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from setuptools import setup
import sys
PY3 = sys.version_info >= (3,)
-VERSION = "0.5.1"
+VERSION = "0.5.2"
COMMANDS = ['fscat',
'fsinfo',