diff options
-rw-r--r-- | CHANGES | 10 | ||||
-rw-r--r-- | pyparsing/__init__.py | 4 |
2 files changed, 7 insertions, 7 deletions
@@ -2,13 +2,13 @@ Change Log ========== -Version 3.0.10 - (in development) +Version 3.1.0 - (in development) --------------------------------- -NOTE: In the future release 3.1.0, use of many of the pre-PEP8 methods (such as -`ParserElement.parseString`) will start to raise `DeprecationWarnings`. 3.1.0 should -get released some time in early 2023. I currently plan to completely +NOTE: In the future release 3.2.0, use of many of the pre-PEP8 methods (such as +`ParserElement.parseString`) will start to raise `DeprecationWarnings`. 3.2.0 should +get released some time later in 2023. I currently plan to completely drop the pre-PEP8 methods in pyparsing 4.0, though we won't see that release until -at least late 2023 or early 2024. So there is plenty of time to convert existing parsers to +at least late 2023 if not 2024. So there is plenty of time to convert existing parsers to the new function names before the old functions are completely removed. (Big help from Devin J. Pohly in structuring the code to enable this peaceful transition.) diff --git a/pyparsing/__init__.py b/pyparsing/__init__.py index 1557b60..9c128ce 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, 0, 10, "final", 0) -__version_time__ = "13 Jan 2023 11:09 UTC" +__version_info__ = version_info(3, 1, 0, "alpha", 1) +__version_time__ = "05 Mar 2023 06:11 UTC" __version__ = __version_info__.__version__ __versionTime__ = __version_time__ __author__ = "Paul McGuire <ptmcg.gm+pyparsing@gmail.com>" |