From 3d50044b8c2e2d6fc322117acc8bf4ada316320b Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 1 May 2015 20:37:48 +0100 Subject: version bump --- CHANGES.txt | 4 ++++ fs/__init__.py | 2 +- setup.py | 2 +- 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', -- cgit v1.2.1