diff --git a/CHANGELOG.md b/CHANGELOG.md index bbfaa727a03..abd4803578a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ Nokogiri follows [Semantic Versioning](https://semver.org/), please see the [REA --- +## v1.17.1 / 2024-12-10 + +### Fixed + +* Fixed a potential segfault when using `Node#dup` and `DocumentFragment#dup`. [#3359] @byroot @flavorjones +* `Node#dup` and `Node#clone` now correctly decorate the new node with the document's `Node` decorators. [#3363] @flavorjones + + ## v1.17.0 / 2024-12-08 ### Dependencies diff --git a/lib/nokogiri/version/constant.rb b/lib/nokogiri/version/constant.rb index 1be1a38a9fa..ecb3227767f 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.0" + VERSION = "1.17.1" end