Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ CHANGELOG
Please keep this file at 72 line width so that we can copy-paste
the release logs directly into commit messages.

1.2.0 (2025-11-08)
==================
* Support Python 3.12 and 3.13 (#55)
* Improve regexp generation for ``#`` (#50)
* Remove spurious CRLF warning (#48)
* Improve python-nested regex output for repetition (#45)
* Fix default for format argument (#42)
* Constrain abnf dependency to 2.2.0 (#43)

This is a minor version which mainly improves on the compatibility of
generated regular expressions so that they can be (re-)used across
more platforms.

1.1.3 (2024-03-22)
==================
* Fix for the case no min. and only max. repetition (#34)
Expand Down
4 changes: 2 additions & 2 deletions abnf_to_regexp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Convert ABNF grammars to Python regular expressions."""

# Do not forget to update in setup.py!
__version__ = "1.1.3"
# Do not forget to update in pyproject.toml!
__version__ = "1.2.0"
__author__ = "Marko Ristin"
__license__ = "License :: OSI Approved :: MIT License"
__status__ = "Production/Stable"
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ build-backend = "setuptools.build_meta"

[project]
name = "abnf-to-regexp"
version = "1.1.3"
# Do not forget to update in __init__.py!
version = "1.2.0"
description = "Convert ABNF grammars to Python regular expressions."
readme = "README.rst"
license = {text = "MIT"}
Expand Down