# HG changeset patch # User Christian Boos # Date 1347876499 -7200 # Node ID c77621b0f6bb495d7eb18f9ce53e22c883782846 # Parent 28d2535d682fe56bc1ee68fcfffa8b511afbb1ef# Parent a0a40cb30265e9ec5c6fd4b5881b482f79635948 Hm, somehow picked the wrong base for 1.0 and also forgot to push my workaround for #10719... diff -r a0a40cb30265 -r c77621b0f6bb .hgignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Mon Sep 17 12:08:19 2012 +0200 @@ -0,0 +1,5 @@ +^TracMercurial.egg-info/ +^build/ +^dist/ +.*~$ +.*\.(bak|mo|pyc)$ diff -r a0a40cb30265 -r c77621b0f6bb README --- a/README Thu Jun 14 11:04:22 2012 +0200 +++ b/README Mon Sep 17 12:08:19 2012 +0200 @@ -8,7 +8,9 @@ === Trac === -This plugin for Trac 0.13 works with Trac ''trunk'': +This plugin works with Trac 1.0.x. + +You can also use the trunk version (1.1.x): {{{ svn co http://svn.edgewall.org/repos/trac/trunk }}} diff -r a0a40cb30265 -r c77621b0f6bb setup.py --- a/setup.py Thu Jun 14 11:04:22 2012 +0200 +++ b/setup.py Mon Sep 17 12:08:19 2012 +0200 @@ -36,16 +36,16 @@ TracMercurial = 'http://trac.edgewall.org/wiki/TracMercurial' setup(name='TracMercurial', - install_requires='Trac >=0.13dev', - description='Mercurial plugin for Trac (0.13 branch)', + install_requires='Trac >=1.0dev', + description='Mercurial plugin for Trac (1.0 branch)', keywords='trac scm plugin mercurial hg', - version='0.13.0.5', + version='1.0.0.1', url=TracMercurial, license='GPL', author='Christian Boos', author_email='cboos@edgewall.org', long_description=""" - This plugin for Trac 0.13 provides support for the Mercurial SCM. + This plugin for Trac 1.0 provides support for the Mercurial SCM. See %s for more details. """ % TracMercurial,