diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dbf2dc..7bb0959 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ### Unreleased +### Version v1.15.0 + * Fix parsing background shorthands in ruby 3.2 [#140](https://github.com/premailer/css_parser/pull/140) ### Version v1.14.0 diff --git a/Gemfile.lock b/Gemfile.lock index 8f14056..e9e1c28 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,13 +1,13 @@ PATH remote: . specs: - css_parser (1.14.0) + css_parser (1.15.0) addressable GEM remote: https://rubygems.org/ specs: - addressable (2.8.1) + addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) ast (2.4.1) benchmark-ips (2.8.4) @@ -19,7 +19,7 @@ GEM parallel (1.20.1) parser (3.0.0.0) ast (~> 2.4.1) - public_suffix (5.0.1) + public_suffix (5.0.3) rainbow (3.0.0) rake (13.0.3) regexp_parser (2.0.3) diff --git a/lib/css_parser/version.rb b/lib/css_parser/version.rb index bb72a56..be23b36 100644 --- a/lib/css_parser/version.rb +++ b/lib/css_parser/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CssParser - VERSION = '1.14.0'.freeze + VERSION = '1.15.0'.freeze end