From 1da2e888cdf0de25394e4a7d6797cf388e6a0e97 Mon Sep 17 00:00:00 2001 From: Dmitry Dygalo Date: Thu, 14 Nov 2024 09:05:56 +0100 Subject: [PATCH] chore(ruby): Release 0.14.3 Signed-off-by: Dmitry Dygalo --- bindings/ruby/CHANGELOG.md | 5 ++++- bindings/ruby/Gemfile.lock | 2 +- bindings/ruby/css_inline.gemspec | 2 +- bindings/ruby/ext/css_inline/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/bindings/ruby/CHANGELOG.md b/bindings/ruby/CHANGELOG.md index f420802..e251d90 100644 --- a/bindings/ruby/CHANGELOG.md +++ b/bindings/ruby/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.14.3] - 2024-11-14 + ### Fixed - Prioritize `!important` rules when computing element styles. [#398](https://github.com/Stranger6667/css-inline/pull/398) @@ -158,7 +160,8 @@ - Initial public release -[Unreleased]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.14.2...HEAD +[Unreleased]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.14.3...HEAD +[0.14.3]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.14.2...ruby-v0.14.3 [0.14.2]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.14.1...ruby-v0.14.2 [0.14.1]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.14.0...ruby-v0.14.1 [0.14.0]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.13.0...ruby-v0.14.0 diff --git a/bindings/ruby/Gemfile.lock b/bindings/ruby/Gemfile.lock index 0c8c2ca..e4653b3 100644 --- a/bindings/ruby/Gemfile.lock +++ b/bindings/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - css_inline (0.14.2) + css_inline (0.14.3) GEM remote: https://rubygems.org/ diff --git a/bindings/ruby/css_inline.gemspec b/bindings/ruby/css_inline.gemspec index 9fbd1b3..5bd41ce 100644 --- a/bindings/ruby/css_inline.gemspec +++ b/bindings/ruby/css_inline.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "css_inline" - spec.version = "0.14.2" + spec.version = "0.14.3" spec.summary = "High-performance library for inlining CSS into HTML 'style' attributes" spec.description = <<-EOF `css_inline` inlines CSS into HTML documents, using components from Mozilla's Servo project. diff --git a/bindings/ruby/ext/css_inline/Cargo.toml b/bindings/ruby/ext/css_inline/Cargo.toml index 1212ede..4a6956d 100644 --- a/bindings/ruby/ext/css_inline/Cargo.toml +++ b/bindings/ruby/ext/css_inline/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-inline-ruby" -version = "0.14.2" +version = "0.14.3" authors = ["Dmitry Dygalo "] edition = "2021" readme = "README.rdoc"