summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2019-03-31 22:08:36 -0500
committerPaul McGuire <ptmcg@austin.rr.com>2019-03-31 22:08:36 -0500
commitbf3e1b95adfbdf81bd24ec193ca901f63d260cbd (patch)
treed017846f54ebdd873ba61ab86c4febca8ac682a1
parentea64a56bfabcd4cc3e65903982b52f6dec38a243 (diff)
downloadpyparsing-git-bf3e1b95adfbdf81bd24ec193ca901f63d260cbd.tar.gz
Separate bullet to collect all updates in Examples, and included new HTML table parsing example that I left out of earlier commit
-rw-r--r--CHANGES15
1 files changed, 11 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index a9e3d4e..fbd4b0f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,8 @@ Version 2.4.0 - March, 2019
- Well, it looks like the API change that was introduced in 2.3.1 was more
drastic than expected, so for a friendlier forward upgrade path, this
release:
+ . Bumps the current version number to 2.4.0, to reflect this
+ incompatible change.
. Adds a pyparsing.__compat__ object for specifying compatibility with
future breaking changes.
. Conditionalizes the API-breaking behavior, based on the value
@@ -19,8 +21,6 @@ Version 2.4.0 - March, 2019
setting the flag to True or False in these later versions will have no
effect.
-- Added example parser for rosettacode.org tutorial compiler.
-
- Fixed bug in runTests handling '\n' literals in quoted strings.
- indentedBlock failure handling was improved; PR submitted by TMiguelT,
@@ -32,8 +32,15 @@ Version 2.4.0 - March, 2019
- Fixed docstring with embedded '\w', which creates SyntaxWarnings in
Py3.8, issue #80.
-- Updated SimpleSQL.py example to handle nested selects, reworked
- where expression to use infixNotation.
+- Examples:
+
+ - Added example parser for rosettacode.org tutorial compiler.
+
+ - Added example to show how an HTML table can be parsed into a
+ collection of Python lists or dicts, one per row.
+
+ - Updated SimpleSQL.py example to handle nested selects, reworked
+ 'where' expression to use infixNotation.
Version 2.3.1 - January, 2019