From a48c305b7cb2bf1c7dc3f5881db23052428342ec Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Wed, 26 May 2021 08:28:15 -0400 Subject: [PATCH] version bump to v1.11.6 and update CHANGELOG --- CHANGELOG.md | 4 ++-- lib/nokogiri/version/constant.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d89ca6c9b4e..961d6426745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,11 @@ Nokogiri follows [Semantic Versioning](https://semver.org/), please see the [REA --- -## 1.11.6 / unreleased +## 1.11.6 / 2021-05-26 ### Fixed -* [CRuby] `DocumentFragment#xpath` checks for error case introduced in libxml > 2.9.10. In v1.11.4 and v1.11.5, calling `DocumentFragment#path` results in a segfault. +* [CRuby] `DocumentFragment#path` now does proper error-checking to handle behavior introduced in libxml > 2.9.10. In v1.11.4 and v1.11.5, calling `DocumentFragment#path` could result in a segfault. ## 1.11.5 / 2021-05-19 diff --git a/lib/nokogiri/version/constant.rb b/lib/nokogiri/version/constant.rb index a0207085552..35ca447d277 100644 --- a/lib/nokogiri/version/constant.rb +++ b/lib/nokogiri/version/constant.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Nokogiri # The version of Nokogiri you are using - VERSION = "1.11.5" + VERSION = "1.11.6" end