diff --git a/CHANGELOG.md b/CHANGELOG.md index 76b9fc6..08c5b6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -- 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. +## [2.1.1] - 2022-02-11 + +- 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 @@ -45,7 +47,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.0...HEAD +[unreleased]: https://github.com/whomwah/rqrcode/compare/v2.1.1...HEAD +[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 [2.0.0]: https://github.com/whomwah/rqrcode/compare/v1.2.0...v2.0.0 [1.2.0]: https://github.com/whomwah/rqrcode/compare/v1.1.1...v1.2.0 diff --git a/Gemfile.lock b/Gemfile.lock index 537e272..d8151fe 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rqrcode (2.1.0) + rqrcode (2.1.1) chunky_png (~> 1.0) rqrcode_core (~> 1.0) diff --git a/lib/rqrcode/version.rb b/lib/rqrcode/version.rb index dff9d80..720e29c 100644 --- a/lib/rqrcode/version.rb +++ b/lib/rqrcode/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RQRCode - VERSION = "2.1.0" + VERSION = "2.1.1" end