diff --git a/bindings/ruby/CHANGELOG.md b/bindings/ruby/CHANGELOG.md index 12e3034c..ad8a7c66 100644 --- a/bindings/ruby/CHANGELOG.md +++ b/bindings/ruby/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.14.0] - 2024-04-01 + ### Added - External stylesheet caching. [#314](https://github.com/Stranger6667/css-inline/issues/314) @@ -135,7 +137,8 @@ - Initial public release -[Unreleased]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.13.0...HEAD +[Unreleased]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.14.0...HEAD +[0.14.0]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.13.0...ruby-v0.14.0 [0.13.0]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.12.0...ruby-v0.13.0 [0.12.0]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.11.2...ruby-v0.12.0 [0.11.2]: https://github.com/Stranger6667/css-inline/compare/ruby-v0.11.1...ruby-v0.11.2 diff --git a/bindings/ruby/Gemfile.lock b/bindings/ruby/Gemfile.lock index 905ecbb8..5e33d088 100644 --- a/bindings/ruby/Gemfile.lock +++ b/bindings/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - css_inline (0.13.0) + css_inline (0.14.0) GEM remote: https://rubygems.org/ diff --git a/bindings/ruby/css_inline.gemspec b/bindings/ruby/css_inline.gemspec index 2f5434cc..d54b03c0 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.13.0" + spec.version = "0.14.0" 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 dd2103df..a10c6036 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.13.0" +version = "0.14.0" authors = ["Dmitry Dygalo "] edition = "2021" readme = "README.rdoc"