From 800fbfdf1b9c30b4c9615fe55e12fc52fdce1bf6 Mon Sep 17 00:00:00 2001 From: James Martin Date: Mon, 10 Jan 2022 06:48:34 +1030 Subject: [PATCH] Bump version for v1.8.0 release --- CHANGELOG.md | 7 +++++-- lib/inline_svg/version.rb | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57e0626..897e82c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] +Nothing. + +## [1.8.0] - 2022-01-09 ### Added - Remove deprecation warning for `inline_svg`, as we intend to keep it in 2.0. [#131](https://github.com/jamesmartin/inline_svg/pull/131). Thanks [@DanielJackson-Oslo](https://github.com/DanielJackson-Oslo) - Add support for Webpacker 6 beta. [#129](https://github.com/jamesmartin/inline_svg/pull/129). Thanks [@Intrepidd](https://github.com/Intrepidd) and [@tessi](https://github.com/tessi) @@ -26,7 +29,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Using Webpacker and Asset Pipeline in a single App could result in SVGs not being found because the wrong `AssetFinder` was used. [#114](https://github.com/jamesmartin/inline_svg/pull/114). Thanks, [@kylefox](https://github.com/kylefox) - Prevent "EOFError error" when using webpack dev server over HTTPS [#113](https://github.com/jamesmartin/inline_svg/pull/113). Thanks, [@kylefox](https://github.com/kylefox) - ## [1.6.0] - 2019-11-13 ### Added - Support Webpack via the new `inline_svg_pack_tag` helper and deprecate `inline_svg` helper in preparation for v2.0. @@ -242,7 +244,8 @@ transformations](https://github.com/jamesmartin/inline_svg/blob/master/README.md ### Added - Basic Railtie and view helper to inline SVG documents to Rails views. -[unreleased]: https://github.com/jamesmartin/inline_svg/compare/v1.7.2...HEAD +[unreleased]: https://github.com/jamesmartin/inline_svg/compare/v1.8.0...HEAD +[1.8.0]: https://github.com/jamesmartin/inline_svg/compare/v1.7.2...v1.8.0 [1.7.2]: https://github.com/jamesmartin/inline_svg/compare/v1.7.1...v1.7.2 [1.7.1]: https://github.com/jamesmartin/inline_svg/compare/v1.7.0...v1.7.1 [1.7.0]: https://github.com/jamesmartin/inline_svg/compare/v1.6.0...v1.7.0 diff --git a/lib/inline_svg/version.rb b/lib/inline_svg/version.rb index 987e186..a660835 100644 --- a/lib/inline_svg/version.rb +++ b/lib/inline_svg/version.rb @@ -1,3 +1,3 @@ module InlineSvg - VERSION = "1.7.2" + VERSION = "1.8.0" end