File tree 4 files changed +21
-3
lines changed
4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 7
7
*Release date: 18-Sep-2013*
8
8
9
9
* Initial release
10
+
11
+
12
+ 0.2.0
13
+ -----
14
+
15
+ *Release data: 30-Sep-2013*
16
+
17
+ * Allow fetching of multiple keys (sub-nodes)
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Get a key
47
47
48
48
.. code :: python
49
49
50
- client.get(' /nodes/n2' )[ ' value' ]
50
+ client.get(' /nodes/n2' ). value
51
51
52
52
Delete a key
53
53
~~~~~~~~~~~~
@@ -75,8 +75,12 @@ List sub keys
75
75
76
76
.. code :: python
77
77
78
+ # List nodes in the cluster
78
79
client.get(' /nodes' )
79
80
81
+ # List keys under /subtree
82
+ client.get(' /subtree' )
83
+
80
84
Get machines in the cluster
81
85
~~~~~~~~~~~~~~~~~~~~~~~~~~~
82
86
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Get a key
53
53
54
54
.. code :: python
55
55
56
- client.get(' /nodes/n2' )[ ' value' ]
56
+ client.get(' /nodes/n2' ). value
57
57
58
58
59
59
Delete a key
@@ -85,8 +85,12 @@ List sub keys
85
85
86
86
.. code :: python
87
87
88
+ # List nodes in the cluster
88
89
client.get(' /nodes' )
89
90
91
+ # List keys under /subtree
92
+ client.get(' /subtree' )
93
+
90
94
91
95
Get machines in the cluster
92
96
...........................
@@ -144,6 +148,8 @@ To make a release,
144
148
5) Increase version in setup.py (for next release)
145
149
146
150
151
+ List of contributors at https://github.com/jplana/python-etcd/graphs/contributors
152
+
147
153
Code documentation
148
154
------------------
149
155
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.1 '
9
+ version = '0.2.0 '
10
10
11
11
install_requires = ['urllib3==1.7' ]
12
12
You can’t perform that action at this time.
0 commit comments