From c75c0a10c70df2107d035debd185124777295ec2 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Thu, 5 Sep 2024 09:15:05 +0200 Subject: [PATCH] Bump version and update readme --- CHANGELOG.md | 2 +- README.md | 8 +------- lib/inline_svg/version.rb | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c41bcf..619a0b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] -Nothing. +- Drop Support for Webpacker, Legacy Ruby (< 3.0), and Legacy Rails (< 6.1). [#163](https://github.com/jamesmartin/inline_svg/pull/163). Thanks, [@tagliala](https://github.com/tagliala) ## [1.10.0] - 2024-09-03 ### Added diff --git a/README.md b/README.md index 3425859..bcd0d72 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,7 @@ embedding](http://css-tricks.com/using-svg/) it inline in the HTML. This gem adds Rails helper methods (`inline_svg_tag` and `inline_svg_pack_tag`) that read an SVG document (via Sprockets or Shakapacker, so works with the Rails Asset Pipeline), applies a CSS class attribute to the root of the document and then embeds it into a view. -Inline SVG supports: - -- [Rails 5](http://weblog.rubyonrails.org/2016/6/30/Rails-5-0-final/) (from [v0.10.0](https://github.com/jamesmartin/inline_svg/releases/tag/v0.10.0)) -- [Rails 6](https://weblog.rubyonrails.org/2019/4/24/Rails-6-0-rc1-released/) with Sprockets or Webpacker (from [v1.5.2](https://github.com/jamesmartin/inline_svg/releases/tag/v1.5.2)). -- [Rails 7](https://weblog.rubyonrails.org/2021/12/6/Rails-7-0-rc-1-released/) - -Inline SVG no longer officially supports Rails 3 or Rails 4 (although they may still work). In order to reduce the maintenance cost of this project we now follow the [Rails Maintenance Policy](https://guides.rubyonrails.org/maintenance_policy.html). +Inline SVG supports Rails 6.1/7.x with Sprockets or Shakapacker ## Changelog diff --git a/lib/inline_svg/version.rb b/lib/inline_svg/version.rb index 95ef9b7..ee19c03 100644 --- a/lib/inline_svg/version.rb +++ b/lib/inline_svg/version.rb @@ -1,3 +1,3 @@ module InlineSvg - VERSION = "1.10.0" + VERSION = "2.0.0" end