From 0eee8188b46d58360173e63421b39725f7d4d5ff Mon Sep 17 00:00:00 2001 From: ptmcg Date: Sat, 8 Apr 2023 00:16:42 -0500 Subject: [PATCH] Stage for release --- CHANGES | 4 ++-- pyparsing/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 994dbf1c..ddbddacb 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 47ad4280..d4a88e3f 100644 --- a/pyparsing/__init__.py +++ b/pyparsing/__init__.py @@ -121,7 +121,7 @@ def __repr__(self): __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 "