# HG changeset patch # User Paul Boddie # Date 1349563469 -7200 # Node ID 964fe9dd9c8f5b356eacb0cfd70ed962a539b66b # Parent 69590f054c12844145d59b976888eb91ad6317dd Fixed the version numbering. diff -r 69590f054c12 -r 964fe9dd9c8f ImprovedTableParser.py --- a/ImprovedTableParser.py Mon Jul 16 00:36:12 2012 +0200 +++ b/ImprovedTableParser.py Sun Oct 07 00:44:29 2012 +0200 @@ -12,7 +12,7 @@ from MoinSupport import * import re -__version__ = "0.3" +__version__ = "0.2" # Regular expressions. diff -r 69590f054c12 -r 964fe9dd9c8f PKG-INFO --- a/PKG-INFO Mon Jul 16 00:36:12 2012 +0200 +++ b/PKG-INFO Sun Oct 07 00:44:29 2012 +0200 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: ImprovedTableParser -Version: 0.3 +Version: 0.2 Author: Paul Boddie Author-email: paul at boddie org uk Maintainer: Paul Boddie Maintainer-email: paul at boddie org uk Home-page: http://moinmo.in/ParserMarket/ImprovedTableParser -Download-url: http://moinmo.in/ParserMarket/ImprovedTableParser?action=AttachFile&do=view&target=ImprovedTableParser-0.3.tar.bz2 +Download-url: http://moinmo.in/ParserMarket/ImprovedTableParser?action=AttachFile&do=view&target=ImprovedTableParser-0.2.tar.bz2 Summary: Support an alternative table syntax for MoinMoin, together with improved presentation functionality License: GPL (version 2 or later) Description: The ImprovedTableParser extension for MoinMoin provides an alternative way of diff -r 69590f054c12 -r 964fe9dd9c8f README.txt --- a/README.txt Mon Jul 16 00:36:12 2012 +0200 +++ b/README.txt Sun Oct 07 00:44:29 2012 +0200 @@ -106,17 +106,12 @@ MoinSupport Tested with 0.2 Source: http://hgweb.boddie.org.uk/MoinSupport -New in ImprovedTableParser 0.3 (Changes since ImprovedTableParser 0.2) ----------------------------------------------------------------------- - - * Added line continuation syntax for column text. - * Moved parsing and formatting functions to MoinSupport. - New in ImprovedTableParser 0.2 (Changes since ImprovedTableParser 0.1) ---------------------------------------------------------------------- - * Moved the section argument processing functions into the MoinSupport - distribution. + * Moved the section argument processing, parsing and formatting functions + into the MoinSupport distribution. + * Added line continuation syntax for column text. * Added the missing __version__ attribute to the common library module. Release Procedures diff -r 69590f054c12 -r 964fe9dd9c8f setup.py --- a/setup.py Mon Jul 16 00:36:12 2012 +0200 +++ b/setup.py Sun Oct 07 00:44:29 2012 +0200 @@ -8,6 +8,6 @@ author = "Paul Boddie", author_email = "paul@boddie.org.uk", url = "http://moinmo.in/ParserMarket/ImprovedTableParser", - version = "0.3", + version = "0.2", py_modules = ["ImprovedTableParser"] )