changeset 849:d40de32ec5b1

init: assert compatibility with Mercurial 3.2.2
author Siddharth Agarwal <sid0@fb.com>
date Wed, 10 Dec 2014 11:01:12 -0800
parents 05eb0874fa30
children 96c74ae74ccd
files Makefile hggit/__init__.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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 = {}