summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2023-03-13 16:31:42 -0500
committerptmcg <ptmcg@austin.rr.com>2023-03-13 16:31:42 -0500
commita7e3b0afc1320c79c34dc69d38dd49e3bbeeb297 (patch)
treef11f297b994f9f3e5de9165abdef06f4c9474f92
parenteb59a9f86f08158cdf995ff452dd1957dc060e36 (diff)
downloadpyparsing-git-a7e3b0afc1320c79c34dc69d38dd49e3bbeeb297.tar.gz
Staging for post-3.1.0a1 work
-rw-r--r--CHANGES5
-rw-r--r--pyparsing/__init__.py4
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index eab5285..0d118be 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,11 @@
Change Log
==========
+Version 3.1.0a2 - (in development)
+----------------------------------
+(the next release may be A2 or B1, depending on the responses to A1)
+
+
Version 3.1.0a1 - March, 2023
-----------------------------
NOTE: In the future release 3.2.0, use of many of the pre-PEP8 methods (such as
diff --git a/pyparsing/__init__.py b/pyparsing/__init__.py
index bec6347..be6f21f 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", 1)
-__version_time__ = "08 Mar 2023 01:10 UTC"
+__version_info__ = version_info(3, 1, 0, "alpha", 2)
+__version_time__ = "13 Mar 2023 21:29 UTC"
__version__ = __version_info__.__version__
__versionTime__ = __version_time__
__author__ = "Paul McGuire <ptmcg.gm+pyparsing@gmail.com>"