From a7e3b0afc1320c79c34dc69d38dd49e3bbeeb297 Mon Sep 17 00:00:00 2001 From: ptmcg Date: Mon, 13 Mar 2023 16:31:42 -0500 Subject: Staging for post-3.1.0a1 work --- CHANGES | 5 +++++ pyparsing/__init__.py | 4 ++-- 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 " -- cgit v1.2.1