From 7d4bda2743ebc04f68d2594bc4fffc70cd65848f Mon Sep 17 00:00:00 2001 From: ptmcg Date: Wed, 6 Mar 2024 01:16:23 -0600 Subject: [PATCH] Prep for 3.1.2 release --- CHANGES | 4 ++-- pyparsing/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 91e5c439..49788aad 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.2 - in development ------------------------------- +Version 3.1.2 - March, 2024 +--------------------------- - Added `ieee_float` expression to `pyparsing.common`, which parses float values, plus "NaN", "Inf", "Infinity". PR submitted by Bob Peterson (#538). diff --git a/pyparsing/__init__.py b/pyparsing/__init__.py index beef5e74..79d8153c 100644 --- a/pyparsing/__init__.py +++ b/pyparsing/__init__.py @@ -121,7 +121,7 @@ def __repr__(self): __version_info__ = version_info(3, 1, 2, "final", 1) -__version_time__ = "25 Feb 2024 17:23 UTC" +__version_time__ = "06 Mar 2024 07:08 UTC" __version__ = __version_info__.__version__ __versionTime__ = __version_time__ __author__ = "Paul McGuire "