summaryrefslogtreecommitdiff
path: root/gitdb/__init__.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-06 17:02:35 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-06 17:02:35 +0100
commitfdc1d68b01f0d5dd601cdcc29df0eee19787d7c9 (patch)
treee2a950d95009cfd94e79fb59358d4ba0a575a221 /gitdb/__init__.py
parentb1c9d3eb5b13f2feecb242701f5b4842184f6234 (diff)
downloadgitdb-fdc1d68b01f0d5dd601cdcc29df0eee19787d7c9.tar.gz
Fixed python 3 compatibility issue that only showed on windows0.6.2
And bumped version to 0.6.2
Diffstat (limited to 'gitdb/__init__.py')
-rw-r--r--gitdb/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitdb/__init__.py b/gitdb/__init__.py
index 791a2ef..020a579 100644
--- a/gitdb/__init__.py
+++ b/gitdb/__init__.py
@@ -29,7 +29,7 @@ _init_externals()
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
-version_info = (0, 6, 1)
+version_info = (0, 6, 2)
__version__ = '.'.join(str(i) for i in version_info)