Skip to content

Commit 05e92be

Browse files
committed
Update changelog and bump version
Bugfix added to wrong changelog entry
1 parent 9bd73eb commit 05e92be

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

docs/src/markdown/about/changelog.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ icon: lucide/scroll-text
33
---
44
# Changelog
55

6+
## 2.9.1
7+
8+
- **FIX**: Correct `[attr^=""]`, `[attr$=""]`, and `[attr*=""]` to match nothing when the value is empty, per CSS
9+
Selectors Level 4 substring matching, which previously matched any element merely having the attribute
10+
(@chuenchen309).
11+
612
## 2.9
713

814
- **NEW**: Drop Python 3.9 support.
@@ -12,9 +18,6 @@ icon: lucide/scroll-text
1218
matched the wrong elements or nothing at all (@gaoflow).
1319
- **FIX**: More efficient CSS ID matching (@kaimandalic).
1420
- **FIX**: Fix inefficient trimming of comments and white space (@kaimandalic).
15-
- **FIX**: Correct `[attr^=""]`, `[attr$=""]`, and `[attr*=""]` to match nothing when the value is empty, per CSS
16-
Selectors Level 4 substring matching, which previously matched any element merely having the attribute
17-
(@chuenchen309).
1821

1922
## 2.8.4
2023

soupsieve/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,5 +193,5 @@ def parse_version(ver: str) -> Version:
193193
return Version(major, minor, micro, release, pre, post, dev)
194194

195195

196-
__version_info__ = Version(2, 9, 0, "final")
196+
__version_info__ = Version(2, 9, 1, "final")
197197
__version__ = __version_info__._get_canonical()

0 commit comments

Comments
 (0)