1
1
mirror of https://github.com/mrabarnett/mrab-regex.git synced 2025-10-05 20:02:39 +02:00

Updated main.yml and pyproject.toml.

This commit is contained in:
Matthew Barnett
2025-07-30 18:09:15 +01:00
parent 7ebda8c032
commit 88fee8529b
3 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
Version: 2025.7.33
Updated main.yml and pyproject.toml.
Version: 2025.7.32
Git issue 580: Regression in v2025.7.31: \P{L} no longer matches in simple patterns

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "regex"
version = "2025.7.32"
version = "2025.7.33"
description = "Alternative regular expression module, to replace re."
readme = "README.rst"
authors = [

View File

@@ -241,7 +241,7 @@ __all__ = ["cache_all", "compile", "DEFAULT_VERSION", "escape", "findall",
"VERSION1", "X", "VERBOSE", "W", "WORD", "error", "Regex", "__version__",
"__doc__", "RegexFlag"]
__version__ = "2.5.157"
__version__ = "2.5.158"
# --------------------------------------------------------------------
# Public interface.