summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2023-04-08 00:16:42 -0500
committerptmcg <ptmcg@austin.rr.com>2023-04-08 00:16:42 -0500
commit0eee8188b46d58360173e63421b39725f7d4d5ff (patch)
tree1ddcb916c79981a0890de73c4b66d79d648e6d46
parenta14021d2fa8f02849a69fae0991e2f963d640eb5 (diff)
downloadpyparsing-git-0eee8188b46d58360173e63421b39725f7d4d5ff.tar.gz
Stage for release
-rw-r--r--CHANGES4
-rw-r--r--pyparsing/__init__.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 994dbf1..ddbddac 100644
--- a/CHANGES
+++ b/CHANGES
@@ -13,8 +13,8 @@ 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.0b1 - (in development)
-----------------------------------
+Version 3.1.0b1 - April, 2023
+-----------------------------
- API CHANGE: A slight change has been implemented when unquoting a quoted string
parsed using the QuotedString class. Formerly, when unquoting and processing
whitespace markers such as \t and \n, these substitutions would occur first, and
diff --git a/pyparsing/__init__.py b/pyparsing/__init__.py
index 47ad428..d4a88e3 100644
--- a/pyparsing/__init__.py
+++ b/pyparsing/__init__.py
@@ -121,7 +121,7 @@ class version_info(NamedTuple):
__version_info__ = version_info(3, 1, 0, "beta", 1)
-__version_time__ = "05 Apr 2023 14:56 UTC"
+__version_time__ = "08 Apr 2023 05:16 UTC"
__version__ = __version_info__.__version__
__versionTime__ = __version_time__
__author__ = "Paul McGuire <ptmcg.gm+pyparsing@gmail.com>"