File tree 3 files changed +24
-3
lines changed
3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1
1
News
2
2
====
3
3
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
+
4
25
0.3.3
5
26
-----
6
27
*Release date: 12-Apr-2015*
Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ def __getattr__(cls, name):
59
59
# built documents.
60
60
#
61
61
# The short X.Y version.
62
- version = '0.3 '
62
+ version = '0.4 '
63
63
# The full version, including alpha/beta/rc tags.
64
- release = '0.3.3 '
64
+ release = '0.4.1 '
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change 6
6
NEWS = open (os .path .join (here , 'NEWS.txt' )).read ()
7
7
8
8
9
- version = '0.4.0 '
9
+ version = '0.4.1 '
10
10
11
11
install_requires = [
12
12
'urllib3>=1.7'
You can’t perform that action at this time.
0 commit comments