From 35b959946cab53cbb28c698c67a8ebf35138e1b6 Mon Sep 17 00:00:00 2001 From: Peter Cai <222655+pcai@users.noreply.github.com> Date: Tue, 13 Feb 2024 20:59:39 +0000 Subject: [PATCH] prepare v2.7.0 release --- CHANGELOG.md | 5 ++++- lib/nori/version.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e021f72..e2135f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ -# Unreleased +# 2.7.0 (2024-02-13) * Added support for ruby 3.1, 3.2, 3.3. Dropped support for ruby 2.7 and below. +* Feature: `Nori::Parser` has a new option, `:scrub_xml`, which defaults to true, for scrubbing invalid characters ([#72](https://github.com/savonrb/nori/pull/72)). This should allow documents containing invalid characters to still be parsed. +* Fix: REXML parser changes `<` inside CDATA to `<` ([#94](https://github.com/savonrb/nori/pull/94)) +* Change: `Object#blank?` is no longer patched in. # 2.6.0 (2015-05-06) diff --git a/lib/nori/version.rb b/lib/nori/version.rb index b465756..f44aa68 100644 --- a/lib/nori/version.rb +++ b/lib/nori/version.rb @@ -1,3 +1,3 @@ class Nori - VERSION = '2.6.0' + VERSION = '2.7.0' end