From 58ba793818a0b086d8bd9d67110d9cf03f34c450 Mon Sep 17 00:00:00 2001 From: Chris Ward Date: Thu, 24 Aug 2023 05:49:58 -0400 Subject: [PATCH] Version 2.7.0 --- CHANGELOG.md | 13 +++++++++++++ lib/wicked_pdf/version.rb | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42f2d0d1..e68a2b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [master branch] - Unreleased ### Breaking Changes +## [2.7.0] +### New Features +- [Support Shakapacker 7](https://github.com/mileszs/wicked_pdf/pull/1067) +- [Add option `delete_temporary_files` to keep the temporary files generated by `pdf_from_string` method](https://github.com/mileszs/wicked_pdf/pull/1068) +- [Add support for --allow flag](https://github.com/mileszs/wicked_pdf/pull/1030) + +## Fixes +- [Add require for `stringio`, which is no longer loaded by default in Ruby 3.1+](https://github.com/mileszs/wicked_pdf/pull/1062) +- [Fix CI build.](https://github.com/mileszs/wicked_pdf/pull/1055) +- [Fix Header/footer temporary file is removed before `wkhtmltopdf` is called](https://github.com/mileszs/wicked_pdf/pull/1039) +- [Bump rubocop to 1.46](https://github.com/mileszs/wicked_pdf/pull/1051) +- [Add Ruby 3.2 to the test matrix](https://github.com/mileszs/wicked_pdf/pull/1046) + ## [2.6.3] ### Fixes - [Fix typo of #possible_binary_locations](https://github.com/mileszs/wicked_pdf/pull/1025) diff --git a/lib/wicked_pdf/version.rb b/lib/wicked_pdf/version.rb index fcdadc34..979914ce 100644 --- a/lib/wicked_pdf/version.rb +++ b/lib/wicked_pdf/version.rb @@ -1,3 +1,3 @@ class WickedPdf - VERSION = '2.6.3'.freeze + VERSION = '2.7.0'.freeze end