Skip to content
Open
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes

## v0.5.1

* Fixes for lxml >=6 compatibility
* Declare lxml as a dependency (#74)
* Fix KeyError when HTML contains tags with '=' in their name

## v0.5.0

* On lxml >= 6 only: unescaped `<addr@domain>` pseudo-tags (common in
Expand Down
2 changes: 1 addition & 1 deletion quotequail/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from . import _internal, _patterns
from ._enums import Position

__version__ = "0.5.0"
__version__ = "0.5.1"
__all__ = ["quote", "quote_html", "unwrap", "unwrap_html"]


Expand Down