Skip to content

Commit

Permalink
version bump to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed May 5, 2024
1 parent 137331a commit 4fcfce6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
## [Unreleased]
## Unreleased


## v0.3.0 - 2024-05-05

- Use a `<template>` tag as the context node for the majority of fragment parsing, which greatly simplifies this gem. #7 @flavorjones @stevecheckoway
- Clean up the README. @marcoroth
- `Nokogiri::HTML5::Inference.parse` always returns a `Nokogiri::XML::Nodeset` for fragments. Previously this method sometimes returns a `Nokogiri::HTML5::DocumentFragment`, but some API inconsistencies between `DocumentFragment` and `NodeSet` made using the returned object tricky. We hope this provides a more consistent development experience. @flavorjones


## [0.2.0] - 2024-04-26
## v0.2.0 - 2024-04-26

- When a `<head>` tag is seen first in the input string, include the `<body>` tag in the returned fragment or node set. (#3, #4) @flavorjones


## [0.1.1] - 2024-04-24
## v0.1.1 - 2024-04-24

- Make protected methods `#context` and `#pluck_path` public, but keeping them undocumented.


## [0.1.0] - 2024-04-24
## v0.1.0 - 2024-04-24

- Initial release
2 changes: 1 addition & 1 deletion lib/nokogiri/html5/inference/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Nokogiri
module HTML5
module Inference
VERSION = "0.2.0"
VERSION = "0.3.0"
end
end
end

0 comments on commit 4fcfce6

Please sign in to comment.