changeset 986:53d514c9c7e6 0.8.5

init: mark Mercurial 3.7 as supported and prepare for 0.8.5
author Siddharth Agarwal <sid0@fb.com>
date Mon, 01 Feb 2016 16:56:40 -0800
parents 00afe8290cd4
children 4006f2a59058
files Makefile hggit/__init__.py
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile
+++ b/Makefile
@@ -31,6 +31,6 @@
 # fixes that bug.
 
 all-version-tests: tests-2.8.2 tests-3.0.1 tests-3.1 tests-3.2.2 tests-3.3 \
-  tests-3.4.1 tests-3.5.2 tests-3.6.3 tests-@
+  tests-3.4.1 tests-3.5.2 tests-3.6.3 tests-3.7 tests-@
 
 .PHONY: tests all-version-tests
--- a/hggit/__init__.py
+++ b/hggit/__init__.py
@@ -76,9 +76,9 @@
     'collections',
 ])
 
-__version__ = '0.8.4'
+__version__ = '0.8.5'
 
-testedwith = '2.8.2 3.0.1 3.1 3.2.2 3.3 3.4 3.5 3.6'
+testedwith = '2.8.2 3.0.1 3.1 3.2.2 3.3 3.4 3.5 3.6 3.7'
 buglink = 'https://bitbucket.org/durin42/hg-git/issues'
 
 cmdtable = {}