summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill McGugan <willmcgugan@gmail.com>2015-05-01 20:37:48 +0100
committerWill McGugan <willmcgugan@gmail.com>2015-05-01 20:37:48 +0100
commit3d50044b8c2e2d6fc322117acc8bf4ada316320b (patch)
tree06ed576634570ecf701613bc7b99eb969127825f
parentdd541bc85a24f04c537358767836e781e9ac285b (diff)
downloadpyfilesystem-git-3d50044b8c2e2d6fc322117acc8bf4ada316320b.tar.gz
version bump
-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',