# HG changeset patch
# User Siddharth Agarwal <sid0@fb.com>
# Date 1418238072 28800
#      Wed Dec 10 11:01:12 2014 -0800
# Node ID d40de32ec5b1380ed20888c744d4f8f468fbf226
# Parent  05eb0874fa30bee2a9649ab618ca6d4869ade2ed
init: assert compatibility with Mercurial 3.2.2

diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,6 @@
 # latest Ubuntu LTS release (2.8.2 for 14.04 LTS) may be dropped if they
 # interfere with new development.  The latest released minor version should be
 # listed for each major version; earlier minor versions are not needed.
-all-version-tests: tests-2.8.2 tests-3.0.1 tests-3.1 tests-@
+all-version-tests: tests-2.8.2 tests-3.0.1 tests-3.1 tests-3.2.2 tests-@
 
 .PHONY: tests all-version-tests
diff --git a/hggit/__init__.py b/hggit/__init__.py
--- a/hggit/__init__.py
+++ b/hggit/__init__.py
@@ -54,7 +54,7 @@
 from git_handler import GitHandler
 import verify
 
-testedwith = '2.8.2 3.0.1 3.1'
+testedwith = '2.8.2 3.0.1 3.1 3.2.2'
 buglink = 'https://bitbucket.org/durin42/hg-git/issues'
 
 cmdtable = {}