ImprovedTableParser

Changeset

36:964fe9dd9c8f
2012-10-07 Paul Boddie raw files shortlog changelog graph Fixed the version numbering.
ImprovedTableParser.py (file) PKG-INFO (file) README.txt (file) setup.py (file)
     1.1 --- a/ImprovedTableParser.py	Mon Jul 16 00:36:12 2012 +0200
     1.2 +++ b/ImprovedTableParser.py	Sun Oct 07 00:44:29 2012 +0200
     1.3 @@ -12,7 +12,7 @@
     1.4  from MoinSupport import *
     1.5  import re
     1.6  
     1.7 -__version__ = "0.3"
     1.8 +__version__ = "0.2"
     1.9  
    1.10  # Regular expressions.
    1.11  
     2.1 --- a/PKG-INFO	Mon Jul 16 00:36:12 2012 +0200
     2.2 +++ b/PKG-INFO	Sun Oct 07 00:44:29 2012 +0200
     2.3 @@ -1,12 +1,12 @@
     2.4  Metadata-Version: 1.1
     2.5  Name: ImprovedTableParser
     2.6 -Version: 0.3
     2.7 +Version: 0.2
     2.8  Author: Paul Boddie
     2.9  Author-email: paul at boddie org uk
    2.10  Maintainer: Paul Boddie
    2.11  Maintainer-email: paul at boddie org uk
    2.12  Home-page: http://moinmo.in/ParserMarket/ImprovedTableParser
    2.13 -Download-url: http://moinmo.in/ParserMarket/ImprovedTableParser?action=AttachFile&do=view&target=ImprovedTableParser-0.3.tar.bz2
    2.14 +Download-url: http://moinmo.in/ParserMarket/ImprovedTableParser?action=AttachFile&do=view&target=ImprovedTableParser-0.2.tar.bz2
    2.15  Summary: Support an alternative table syntax for MoinMoin, together with improved presentation functionality
    2.16  License: GPL (version 2 or later)
    2.17  Description: The ImprovedTableParser extension for MoinMoin provides an alternative way of
     3.1 --- a/README.txt	Mon Jul 16 00:36:12 2012 +0200
     3.2 +++ b/README.txt	Sun Oct 07 00:44:29 2012 +0200
     3.3 @@ -106,17 +106,12 @@
     3.4  MoinSupport                 Tested with 0.2
     3.5                              Source: http://hgweb.boddie.org.uk/MoinSupport
     3.6  
     3.7 -New in ImprovedTableParser 0.3 (Changes since ImprovedTableParser 0.2)
     3.8 -----------------------------------------------------------------------
     3.9 -
    3.10 -  * Added line continuation syntax for column text.
    3.11 -  * Moved parsing and formatting functions to MoinSupport.
    3.12 -
    3.13  New in ImprovedTableParser 0.2 (Changes since ImprovedTableParser 0.1)
    3.14  ----------------------------------------------------------------------
    3.15  
    3.16 -  * Moved the section argument processing functions into the MoinSupport
    3.17 -    distribution.
    3.18 +  * Moved the section argument processing, parsing and formatting functions
    3.19 +    into the MoinSupport distribution.
    3.20 +  * Added line continuation syntax for column text.
    3.21    * Added the missing __version__ attribute to the common library module.
    3.22  
    3.23  Release Procedures
     4.1 --- a/setup.py	Mon Jul 16 00:36:12 2012 +0200
     4.2 +++ b/setup.py	Sun Oct 07 00:44:29 2012 +0200
     4.3 @@ -8,6 +8,6 @@
     4.4      author       = "Paul Boddie",
     4.5      author_email = "paul@boddie.org.uk",
     4.6      url          = "http://moinmo.in/ParserMarket/ImprovedTableParser",
     4.7 -    version      = "0.3",
     4.8 +    version      = "0.2",
     4.9      py_modules   = ["ImprovedTableParser"]
    4.10      )