From 48d0d6d44d4d0a4fb5f1686fced539f720b4c98a Mon Sep 17 00:00:00 2001 From: Ryan McGeary Date: Sun, 10 Nov 2024 11:54:54 -0700 Subject: [PATCH] Bump version to 1.14.0 --- CHANGELOG.md | 14 +++++++++++++- lib/strip_attributes/version.rb | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0183f8d..b364341 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com//), and thi ## [Unreleased] - TBD +## [1.14.0] - 2024-11-10 + +- Adds Rails 8 support ([#73], [#74]) +- Refactor and cleanup option handling ([#69]) +- Adds Ruby 3.2 and 3.3 support ([#65], [#70]) + ## [1.13.0] - 2022-05-13 - Added a matcher for `replace_newlines` ([#62]) @@ -105,7 +111,8 @@ Added multibyte whitespace support to `:collapse_spaces` option ([#32]) ## [0.9.0] - untracked -[Unreleased]: https://github.com/rmm5t/strip_attributes/compare/v1.13.0..HEAD +[Unreleased]: https://github.com/rmm5t/strip_attributes/compare/v1.14.0..HEAD +[1.14.0]: https://github.com/rmm5t/strip_attributes/compare/v1.13.0..v1.14.0 [1.13.0]: https://github.com/rmm5t/strip_attributes/compare/v1.12.0..v1.13.0 [1.12.0]: https://github.com/rmm5t/strip_attributes/compare/v1.11.0..v1.12.0 [1.11.0]: https://github.com/rmm5t/strip_attributes/compare/v1.10.1..v1.11.0 @@ -136,6 +143,11 @@ Added multibyte whitespace support to `:collapse_spaces` option ([#32]) [1.0.0]: https://github.com/rmm5t/strip_attributes/compare/v0.9.0..v1.0.0 [0.9.0]: https://github.com/rmm5t/strip_attributes/compare/a78b807..v0.9.0 +[#74]: https://github.com/rmm5t/strip_attributes/pull/74 +[#73]: https://github.com/rmm5t/strip_attributes/pull/73 +[#70]: https://github.com/rmm5t/strip_attributes/pull/70 +[#69]: https://github.com/rmm5t/strip_attributes/pull/69 +[#65]: https://github.com/rmm5t/strip_attributes/pull/65 [#62]: https://github.com/rmm5t/strip_attributes/pull/62 [#58]: https://github.com/rmm5t/strip_attributes/pull/58 [#59]: https://github.com/rmm5t/strip_attributes/pull/59 diff --git a/lib/strip_attributes/version.rb b/lib/strip_attributes/version.rb index 0cb7b08..5533fa7 100644 --- a/lib/strip_attributes/version.rb +++ b/lib/strip_attributes/version.rb @@ -1,3 +1,3 @@ module StripAttributes - VERSION = "1.13.0" + VERSION = "1.14.0" end