diff --git a/CHANGES b/CHANGES index 49788aad..bff09c76 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,9 @@ 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.3 - in development +------------------------------ + Version 3.1.2 - March, 2024 --------------------------- diff --git a/pyparsing/__init__.py b/pyparsing/__init__.py index 79d8153c..be806116 100644 --- a/pyparsing/__init__.py +++ b/pyparsing/__init__.py @@ -120,8 +120,8 @@ def __repr__(self): return f"{__name__}.{type(self).__name__}({', '.join('{}={!r}'.format(*nv) for nv in zip(self._fields, self))})" -__version_info__ = version_info(3, 1, 2, "final", 1) -__version_time__ = "06 Mar 2024 07:08 UTC" +__version_info__ = version_info(3, 1, 3, "final", 1) +__version_time__ = "07 Mar 2024 13:11 UTC" __version__ = __version_info__.__version__ __versionTime__ = __version_time__ __author__ = "Paul McGuire "