# HG changeset patch # User Siddharth Agarwal # Date 1431125505 25200 # Fri May 08 15:51:45 2015 -0700 # Node ID 49831f78c412a785344b1539b575f6766c38f417 # Parent db308eba525101c0864f6799c707ea3693c30c7c 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. diff --git a/Makefile b/Makefile --- 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 diff --git a/hggit/__init__.py b/hggit/__init__.py --- 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 = {}