Skip to content

Commit ecd777f

Browse files
committed
Release version 0.4.1
1 parent 14476e2 commit ecd777f

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

NEWS.txt

+21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
News
22
====
33

4+
0.4.1
5+
-----
6+
*Release date: 1-Aug-2015*
7+
8+
* Added client-side leader election
9+
* Added stats endpoints
10+
* Added logging
11+
* Better exception handling
12+
* Check for cluster ID on each request
13+
* Added etcd.Client.members and fixed etcd.Client.leader
14+
* Removed locking and election etcd support
15+
* Allow the use of etcd proxies with reconnections
16+
* Implement pop: Remove key from etc and return the corresponding value.
17+
* Eternal watcher can be now recursive
18+
* Fix etcd.Client machines
19+
* Do not send parameters with `None` value to etcd
20+
* Support ttl=0 in write.
21+
* Moved pyOpenSSL into test requirements.
22+
* Always set certificate information so redirects from http to https work.
23+
24+
425
0.3.3
526
-----
627
*Release date: 12-Apr-2015*

docs-source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ def __getattr__(cls, name):
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '0.3'
62+
version = '0.4'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '0.3.3'
64+
release = '0.4.1'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
77

88

9-
version = '0.4.0'
9+
version = '0.4.1'
1010

1111
install_requires = [
1212
'urllib3>=1.7'

0 commit comments

Comments
 (0)