diff options
author | Paul McGuire <ptmcg@users.noreply.github.com> | 2020-06-27 22:27:56 -0500 |
---|---|---|
committer | Paul McGuire <ptmcg@users.noreply.github.com> | 2020-06-27 22:27:56 -0500 |
commit | 0cad4a6d0db06bb6cb1f2f1fded46b73f1e3910a (patch) | |
tree | aecb99f59c0a3166202279a065ae56dbeb54e066 | |
parent | 0448be431e30369f6397c96c27cb7745a73a6871 (diff) | |
download | pyparsing-git-0cad4a6d0db06bb6cb1f2f1fded46b73f1e3910a.tar.gz |
Update version to stage for next release work; fix typo in CHANGES file
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | pyparsing/__init__.py | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ Version 3.0.0a2 - June, 2020 - API CHANGE Changed result returned when parsing using countedArray, - the array items are no long returned in a doubly-nested + the array items are no longer returned in a doubly-nested list. - An excellent new enhancement is the new railroad diagram diff --git a/pyparsing/__init__.py b/pyparsing/__init__.py index e896d6c..33ba1ba 100644 --- a/pyparsing/__init__.py +++ b/pyparsing/__init__.py @@ -94,8 +94,8 @@ classes inherit from. Use the docstrings for examples of how to: namespace class """ -__version__ = "3.0.0a2" -__versionTime__ = "27 June 2020 22:45 UTC" +__version__ = "3.0.0b1" +__versionTime__ = "28 June 2020 03:24 UTC" __author__ = "Paul McGuire <ptmcg@users.sourceforge.net>" from .util import * |