changeset 902:49831f78c412

init: mark hg-git as compatible with Mercurial 3.4 Note that one test still fails with 3.4 -- however, it is a bug in core Mercurial, only affects edge cases (broken symlinks) in the test, and is fixed in upstream stable.
author Siddharth Agarwal <sid0@fb.com>
date Fri, 08 May 2015 15:51:45 -0700
parents db308eba5251
children e6489cf3fe8c
files Makefile hggit/__init__.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile
+++ b/Makefile
@@ -26,6 +26,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-3.2.2 tests-@
+all-version-tests: tests-2.8.2 tests-3.0.1 tests-3.1 tests-3.2.2 tests-3.3 tests-3.4 tests-@
 
 .PHONY: tests all-version-tests
--- a/hggit/__init__.py
+++ b/hggit/__init__.py
@@ -55,7 +55,7 @@
     'collections',
 ])
 
-testedwith = '2.8.2 3.0.1 3.1 3.2.2 3.3'
+testedwith = '2.8.2 3.0.1 3.1 3.2.2 3.3 3.4'
 buglink = 'https://bitbucket.org/durin42/hg-git/issues'
 
 cmdtable = {}