summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-02-07 00:55:46 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-02-07 00:55:46 +0000
commitd217915d6c7af73dabbde0dbf89a1036b7a7f1e0 (patch)
tree85a07ac58a7898902b974efd353bc6b5995df2d6
parentd3c21497c5f9a3658658f37165ffa8e1f436e9fe (diff)
downloadpyparsing-d217915d6c7af73dabbde0dbf89a1036b7a7f1e0.tar.gz
Switched version number to 2.1.0
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@319 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
-rw-r--r--src/CHANGES24
-rw-r--r--src/pyparsing.py4
2 files changed, 14 insertions, 14 deletions
diff --git a/src/CHANGES b/src/CHANGES
index 4fe0eda..21067bf 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -2,8 +2,8 @@
Change Log
==========
-Version 2.0.8 -
----------------------------
+Version 2.1.0 - February, 2016
+------------------------------
- Modified the internal _trim_arity method to distinguish between
TypeError's raised while trying to determine parse action arity and
those raised within the parse action itself. This will clear up those
@@ -33,8 +33,8 @@ Version 2.0.8 -
aristotle2600 on reddit.
-Version 2.0.7 -
----------------------------
+Version 2.0.7 - December, 2015
+------------------------------
- Simplified string representation of Forward class, to avoid memory
and performance errors while building ParseException messages. Thanks,
Will McGugan, Andrea Censi, and Martijn Vermaat for the bug reports and
@@ -57,8 +57,8 @@ Version 2.0.7 -
forms.
-Version 2.0.6 -
----------------------------
+Version 2.0.6 - November, 2015
+------------------------------
- Fixed a bug in Each when multiple Optional elements are present.
Thanks for reporting this, whereswalden on SO.
@@ -85,14 +85,14 @@ Version 2.0.6 -
in duplicate.
-Version 2.0.5 -
----------------------------
+Version 2.0.5 - October, 2015
+-----------------------------
- (&$(@#&$(@!!!! Some "print" statements snuck into pyparsing v2.0.4,
breaking Python 3 compatibility! Fixed. Reported by jenshn, thanks!
-Version 2.0.4 -
----------------------------
+Version 2.0.4 - October, 2015
+-----------------------------
- Added ParserElement.addCondition, to simplify adding parse actions
that act primarily as filters. If the given condition evaluates False,
pyparsing will raise a ParseException. The condition should be a method
@@ -129,8 +129,8 @@ Version 2.0.4 -
made difficult because 'class' is a Python reserved word.
-Version 2.0.3 -
----------------------------
+Version 2.0.3 - October, 2014
+-----------------------------
- Fixed escaping behavior in QuotedString. Formerly, only quotation
marks (or characters designated as quotation marks in the QuotedString
constructor) would be escaped. Now all escaped characters will be
diff --git a/src/pyparsing.py b/src/pyparsing.py
index eaa99b3..f9f1774 100644
--- a/src/pyparsing.py
+++ b/src/pyparsing.py
@@ -57,8 +57,8 @@ The pyparsing module handles some of the problems that are typically vexing when
- embedded comments
"""
-__version__ = "2.0.8"
-__versionTime__ = "6 Feb 2016 13:47"
+__version__ = "2.1.0"
+__versionTime__ = "6 Feb 2016 18:52"
__author__ = "Paul McGuire <ptmcg@users.sourceforge.net>"
import string