changeset 12:c77621b0f6bb 1.0

Hm, somehow picked the wrong base for 1.0 and also forgot to push my workaround for #10719...
author Christian Boos <cboos@edgewall.org>
date Mon, 17 Sep 2012 12:08:19 +0200
parents 28d2535d682f (diff) a0a40cb30265 (current diff)
children 62e59cafa3de
files
diffstat 3 files changed, 12 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- /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)$
--- 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
 }}}
--- 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,