From 6223c5840d9d0a4ec6bdc8724546264745758a4b Mon Sep 17 00:00:00 2001 From: Duncan Robertson Date: Wed, 17 May 2023 09:51:25 +0100 Subject: [PATCH] v2.2.0 release --- CHANGELOG.md | 21 ++++++++++++++++++++- Gemfile.lock | 2 +- lib/rqrcode/version.rb | 2 +- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81bd27d..c6214a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,18 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.2.0] - 2023-06-17 + +### Changed + +* Allow all ChunkyPNG::Color options to be passed into `fill` and `color` on `as_png` [#135] +* Add 3.2 to CI [@petergoldstein](https://github.com/petergoldstein) [#133] +* Development dependency upgrades. Minimum Ruby change [#130] +* README updates + ## [2.1.2] - 2022-07-26 +### Changed + * Remove setup script as it just calls bundle install [#128] * Change inline styles to the fill property to allow for strict CSP style-src directive [#127] ## [2.1.1] - 2022-02-11 +### Added + - Added in a handler for when color arguments are passed in as symbols e.g `color: :yellow`. This also allows for the use of the `:currentColor` keyword. [#122] ## [2.1.0] - 2021-08-26 +### Changed + - Sync Gemfile.lock with `rqrcode_core.1.2.0` [Adds Multimode Support](https://github.com/whomwah/rqrcode_core#multiple-encoding-support) + +### Added + - Add badge for Standard linting ### Changed @@ -52,7 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - bump dependencies - fix `required_ruby_version` for Ruby 3 support -[unreleased]: https://github.com/whomwah/rqrcode/compare/v2.1.2...HEAD +[unreleased]: https://github.com/whomwah/rqrcode/compare/v2.2.0...HEAD +[2.2.0]: https://github.com/whomwah/rqrcode/compare/v2.1.2...v2.2.0 [2.1.2]: https://github.com/whomwah/rqrcode/compare/v2.1.1...v2.1.2 [2.1.1]: https://github.com/whomwah/rqrcode/compare/v2.1.0...v2.1.1 [2.1.0]: https://github.com/whomwah/rqrcode/compare/v2.0.0...v2.1.0 diff --git a/Gemfile.lock b/Gemfile.lock index 537fded..68dcba6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rqrcode (2.1.2) + rqrcode (2.2.0) chunky_png (~> 1.0) rqrcode_core (~> 1.0) diff --git a/lib/rqrcode/version.rb b/lib/rqrcode/version.rb index 2b97756..1259308 100644 --- a/lib/rqrcode/version.rb +++ b/lib/rqrcode/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RQRCode - VERSION = "2.1.2" + VERSION = "2.2.0" end