Skip to content

Commit

Permalink
Prep 1.9.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Jun 23, 2019
1 parent e723c78 commit 6308eb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
## 1.9.2

- **FIX**: Shortcut last descendant calculation if possible for performance.
- **FIX**: Fix issue where `Doctype` strings can be mistaken for a normal text node.
- **FIX**: A top level tag is not a `:root` tag if it has sibling text nodes or tag nodes. This is an issue that mostly manifests when using the `html.parser` as it will allow multiple root nodes.
- **FIX**: Fix issue where `Doctype` strings can be mistaken for a normal text node in some cases.
- **FIX**: A top level tag is not a `:root` tag if it has sibling text nodes or tag nodes. This is an issue that mostly manifests when using `html.parser` as the parser will allow multiple root nodes.

## 1.9.1

Expand Down
2 changes: 1 addition & 1 deletion soupsieve/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,5 +186,5 @@ def parse_version(ver, pre=False):
return Version(major, minor, micro, release, pre, post, dev)


__version_info__ = Version(1, 9, 2, ".dev")
__version_info__ = Version(1, 9, 2, "final")
__version__ = __version_info__._get_canonical()

0 comments on commit 6308eb9

Please sign in to comment.