Skip to content

Commit

Permalink
fix bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
revol.cai committed Mar 18, 2018
1 parent 8459b87 commit dbd4331
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
11 changes: 0 additions & 11 deletions etcd3/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,6 @@ def iter_response(resp):
:param resp: Response
:return: dict
find object:
for chunk in response:
chunk =
ok, start, end = find_object(chunk, start)
if ok:
yield chunk[start:end]
else:
buf.append(chunk)
"""
left_chunk = b''
for chunk in resp.iter_content(chunk_size=2048):
Expand Down
2 changes: 1 addition & 1 deletion etcd3/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = 'Renjie Cai'
__email__ = 'revol.cai@gmail.com'
version='0.1.0'
__version__ = '0.1.0'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ replace = version='{new_version}'

[bumpversion:file:etcd3/version.py]
search = __version__ = '{current_version}'
replace = version='{new_version}'
replace = __version__ = '{new_version}'

[bdist_wheel]
universal = 1
Expand Down

0 comments on commit dbd4331

Please sign in to comment.