summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2023-04-05 09:58:22 -0500
committerptmcg <ptmcg@austin.rr.com>2023-04-05 12:13:43 -0500
commitff8d0e486a778da4250936b24f397de50b13d553 (patch)
tree378553a3c6b23a1c88b55fedf2353fcb4ba3e996
parentf476afa6a4d9e291505e5d3c0efc6e52cb3df58f (diff)
downloadpyparsing-git-ff8d0e486a778da4250936b24f397de50b13d553.tar.gz
Staging for release
-rw-r--r--CHANGES2
-rw-r--r--pyparsing/__init__.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 19196ba..994dbf1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -13,7 +13,7 @@ help from Devin J. Pohly in structuring the code to enable this peaceful transit
Version 3.2.0 will also discontinue support for Python versions 3.6 and 3.7.
-Version 3.1.0a2 - (in development)
+Version 3.1.0b1 - (in development)
----------------------------------
- API CHANGE: A slight change has been implemented when unquoting a quoted string
parsed using the QuotedString class. Formerly, when unquoting and processing
diff --git a/pyparsing/__init__.py b/pyparsing/__init__.py
index b5b411a..47ad428 100644
--- a/pyparsing/__init__.py
+++ b/pyparsing/__init__.py
@@ -120,8 +120,8 @@ class version_info(NamedTuple):
return f"{__name__}.{type(self).__name__}({', '.join('{}={!r}'.format(*nv) for nv in zip(self._fields, self))})"
-__version_info__ = version_info(3, 1, 0, "alpha", 2)
-__version_time__ = "13 Mar 2023 21:29 UTC"
+__version_info__ = version_info(3, 1, 0, "beta", 1)
+__version_time__ = "05 Apr 2023 14:56 UTC"
__version__ = __version_info__.__version__
__versionTime__ = __version_time__
__author__ = "Paul McGuire <ptmcg.gm+pyparsing@gmail.com>"