diff --git a/CHANGELOG.md b/CHANGELOG.md index abd4803578..7f0b51c2cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ Nokogiri follows [Semantic Versioning](https://semver.org/), please see the [REA --- +## v1.17.2 / 2024-12-12 + +### Fixed + +* [JRuby] Fixed an issue where `Node#dup` when called with the `new_parent_doc` parameter was not decorating the node with the document's `Node` decorators. [#3372] @flavorjones + + ## v1.17.1 / 2024-12-10 ### Fixed diff --git a/lib/nokogiri/version/constant.rb b/lib/nokogiri/version/constant.rb index ecb3227767..ec7180066d 100644 --- a/lib/nokogiri/version/constant.rb +++ b/lib/nokogiri/version/constant.rb @@ -2,5 +2,5 @@ module Nokogiri # The version of Nokogiri you are using - VERSION = "1.17.1" + VERSION = "1.17.2" end