From f1a5cae90223d5ad0ab5a6fa57041c3629fe569f Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Wed, 4 Aug 2021 08:10:14 -0400 Subject: [PATCH] version bump to v1.12.2 --- CHANGELOG.md | 7 +++++++ lib/nokogiri/version/constant.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f40f822e0c..57dbbe8b82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ Nokogiri follows [Semantic Versioning](https://semver.org/), please see the [REA --- +## 1.12.2 / 2021-08-04 + +### Fixed + +* Ensure that C extension files in non-native gem installations are loaded using `require` and rely on `$LOAD_PATH` instead of using `require_relative`. This issue only exists when deleting shared libraries that exist outside the extensions directory, something users occasionally do to conserve disk space. [[#2300](https://github.com/sparklemotion/nokogiri/issues/2300)] + + ## 1.12.1 / 2021-08-03 ### Fixed diff --git a/lib/nokogiri/version/constant.rb b/lib/nokogiri/version/constant.rb index 8e3367daac..a6cfa67b82 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.12.1" + VERSION = "1.12.2" end