summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2014-04-17 14:25:43 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2014-04-17 14:26:09 +0900
commitc499b43b9cbf1f98364b75a1ea718b6b756b9c93 (patch)
tree7876a40ad1df100f80b1c14cc18f6d3ac127209e
parent39f7906b5774243e6fe9fb622dcec37d0cef3ca0 (diff)
downloadpygerrit-c499b43b9cbf1f98364b75a1ea718b6b756b9c93.tar.gz
Version 0.2.50.2.5
Change-Id: I083eca93f4969fa9c2d157da39f342de62cf5fd6
-rw-r--r--AUTHORS.rst2
-rw-r--r--HISTORY.rst5
-rw-r--r--pygerrit/__init__.py2
3 files changed, 8 insertions, 1 deletions
diff --git a/AUTHORS.rst b/AUTHORS.rst
index f61b134..0359886 100644
--- a/AUTHORS.rst
+++ b/AUTHORS.rst
@@ -13,3 +13,5 @@ Patches and Suggestions
- Ernst Sjöstrand <ernst.sjostrand@sonymobile.com>
- Jens Andersen <jens.andersen@gmail.com>
- Christopher Zee <christopher.xs.zee@gmail.com>
+- Johannes Richter <johannes.richter@kernkonzept.com>
+- Andrey Devyatkin <andrey.a.devyatkin@gmail.com>
diff --git a/HISTORY.rst b/HISTORY.rst
index e4f494a..04debc4 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,11 @@
History
-------
+0.2.5 (2014-04-17)
+++++++++++++++++++
+- Update examples to use argparse instead of optparse
+- Fix hanging ssh connections when stream closes
+
0.2.4 (2014-03-17)
++++++++++++++++++
diff --git a/pygerrit/__init__.py b/pygerrit/__init__.py
index 8bc193e..43eba69 100644
--- a/pygerrit/__init__.py
+++ b/pygerrit/__init__.py
@@ -22,7 +22,7 @@
""" Module to interface with Gerrit. """
-__numversion__ = (0, 2, 4)
+__numversion__ = (0, 2, 5)
__version__ = '.'.join([str(num) for num in __numversion__])