From 604c923036927f2760899f88fc3d9e71efff4622 Mon Sep 17 00:00:00 2001 From: Jose Plana Date: Tue, 5 Aug 2014 00:12:31 +0200 Subject: [PATCH] Bumped to version 0.3.1 --- NEWS.txt | 24 +++++++++++++++++++++++- setup.py | 2 +- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/NEWS.txt b/NEWS.txt index 5806985a..0909bc65 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,6 +1,29 @@ News ==== +0.3.1 +----- + +*Release date: 4-Aug-2014* + +* Added consisten read option +* Fixed timeout parameter in read() +* Added atomic delete parameter support +* Fixed delete behaviour +* Added update method that allows atomic updated on results +* Fixed checks on write() +* Added leaves generator to EtcdResult and get_subtree for recursive fetch +* Added etcd_index to EtcdResult +* Changed ethernal -> eternal +* Updated urllib3 & pyOpenSSL libraries +* Several performance fixes +* Better parsing of etcd_index and raft_index +* Removed duplicated tests +* Added several integration and unit tests +* Use etcd v0.3.0 in travis +* Execute test using `python setup.py test` and nose + + 0.3.0 ----- @@ -35,4 +58,3 @@ News *Release date: 18-Sep-2013* * Initial release - diff --git a/setup.py b/setup.py index 6f060956..4eb61e52 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ NEWS = open(os.path.join(here, 'NEWS.txt')).read() -version = '0.3.0' +version = '0.3.1' install_requires = [ 'urllib3>=1.7',