diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bda01d5..93beda40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0] - 2021-08-26 + ### Improvements * Added `#document_title` and `#page_title` methods for customizing the contents @@ -371,7 +373,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Sprockets and Webpacker support. Defaults to Sprockets * Navigation bar with links to all admin controllers -[Unreleased]: https://github.com/zachahn/super/compare/v0.17.0...HEAD +[Unreleased]: https://github.com/zachahn/super/compare/v0.18.0...HEAD +[0.18.0]: https://github.com/zachahn/super/compare/v0.17.0...v0.18.0 [0.17.0]: https://github.com/zachahn/super/compare/v0.0.16...v0.17.0 [0.0.16]: https://github.com/zachahn/super/compare/v0.0.15...v0.0.16 [0.0.15]: https://github.com/zachahn/super/compare/v0.0.14...v0.0.15 diff --git a/Gemfile.lock b/Gemfile.lock index 6d31fd07..b10b474b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails50_sprockets3.gemfile.lock b/gemfiles/rails50_sprockets3.gemfile.lock index abe64f62..885f54b1 100644 --- a/gemfiles/rails50_sprockets3.gemfile.lock +++ b/gemfiles/rails50_sprockets3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails50_sprockets3_ruby23.gemfile.lock b/gemfiles/rails50_sprockets3_ruby23.gemfile.lock index 60cba17e..5c2c7a94 100644 --- a/gemfiles/rails50_sprockets3_ruby23.gemfile.lock +++ b/gemfiles/rails50_sprockets3_ruby23.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails51_sprockets3.gemfile.lock b/gemfiles/rails51_sprockets3.gemfile.lock index c450125b..1d783a7f 100644 --- a/gemfiles/rails51_sprockets3.gemfile.lock +++ b/gemfiles/rails51_sprockets3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails52_sprockets4.gemfile.lock b/gemfiles/rails52_sprockets4.gemfile.lock index d32cc847..0f85b1e2 100644 --- a/gemfiles/rails52_sprockets4.gemfile.lock +++ b/gemfiles/rails52_sprockets4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails60_sprockets4.gemfile.lock b/gemfiles/rails60_sprockets4.gemfile.lock index cec1f773..2e7b7034 100644 --- a/gemfiles/rails60_sprockets4.gemfile.lock +++ b/gemfiles/rails60_sprockets4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails60_webpacker4.gemfile.lock b/gemfiles/rails60_webpacker4.gemfile.lock index d7c91ba4..b58f0866 100644 --- a/gemfiles/rails60_webpacker4.gemfile.lock +++ b/gemfiles/rails60_webpacker4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails60_webpacker5.gemfile.lock b/gemfiles/rails60_webpacker5.gemfile.lock index 15ed3a04..6ee1594c 100644 --- a/gemfiles/rails60_webpacker5.gemfile.lock +++ b/gemfiles/rails60_webpacker5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails61_sprockets4.gemfile.lock b/gemfiles/rails61_sprockets4.gemfile.lock index d7560d2a..4e4ce33d 100644 --- a/gemfiles/rails61_sprockets4.gemfile.lock +++ b/gemfiles/rails61_sprockets4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails61_webpacker5.gemfile.lock b/gemfiles/rails61_webpacker5.gemfile.lock index b70f1e1b..d66abc0e 100644 --- a/gemfiles/rails61_webpacker5.gemfile.lock +++ b/gemfiles/rails61_webpacker5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails61_webpacker6.gemfile.lock b/gemfiles/rails61_webpacker6.gemfile.lock index 4ce34ca7..5f4ed0d7 100644 --- a/gemfiles/rails61_webpacker6.gemfile.lock +++ b/gemfiles/rails61_webpacker6.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.17.0) + super (0.18.0) railties (>= 5.0) GEM diff --git a/lib/super/version.rb b/lib/super/version.rb index 9cbf74dd..6c53de0c 100644 --- a/lib/super/version.rb +++ b/lib/super/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Super - VERSION = "0.17.0" + VERSION = "0.18.0" end