# HG changeset patch
# User Siddharth Agarwal <sid0@fb.com>
# Date 1454374600 28800
#      Mon Feb 01 16:56:40 2016 -0800
# Node ID 53d514c9c7e6ac99e2c4d6df6c520a7db1e63d7f
# Parent  00afe8290cd4f9a0d83f2d17083b05cb55ed3591
init: mark Mercurial 3.7 as supported and prepare for 0.8.5

diff --git a/Makefile b/Makefile
--- 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
diff --git a/hggit/__init__.py b/hggit/__init__.py
--- 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 = {}