diff --git a/CHANGELOG.md b/CHANGELOG.md index 8045d9b4..7637166b 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.17.0] - 2021-06-12 + ### Added * Some new filter types @@ -361,7 +363,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.0.16...HEAD +[Unreleased]: https://github.com/zachahn/super/compare/v0.17.0...HEAD +[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 [0.0.14]: https://github.com/zachahn/super/compare/v0.0.13...v0.0.14 diff --git a/Gemfile.lock b/Gemfile.lock index caed9ded..f654bb6b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails50_sprockets3.gemfile.lock b/gemfiles/rails50_sprockets3.gemfile.lock index ce3e173e..886bbbd8 100644 --- a/gemfiles/rails50_sprockets3.gemfile.lock +++ b/gemfiles/rails50_sprockets3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails50_sprockets3_ruby23.gemfile.lock b/gemfiles/rails50_sprockets3_ruby23.gemfile.lock index b4f03a1d..97d8a25e 100644 --- a/gemfiles/rails50_sprockets3_ruby23.gemfile.lock +++ b/gemfiles/rails50_sprockets3_ruby23.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails51_sprockets3.gemfile.lock b/gemfiles/rails51_sprockets3.gemfile.lock index 9119815d..7e0f2cf1 100644 --- a/gemfiles/rails51_sprockets3.gemfile.lock +++ b/gemfiles/rails51_sprockets3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails52_sprockets4.gemfile.lock b/gemfiles/rails52_sprockets4.gemfile.lock index 4acf1c43..6f5acd2f 100644 --- a/gemfiles/rails52_sprockets4.gemfile.lock +++ b/gemfiles/rails52_sprockets4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails60_sprockets4.gemfile.lock b/gemfiles/rails60_sprockets4.gemfile.lock index 8bc3dc08..773e5d75 100644 --- a/gemfiles/rails60_sprockets4.gemfile.lock +++ b/gemfiles/rails60_sprockets4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails60_webpacker4.gemfile.lock b/gemfiles/rails60_webpacker4.gemfile.lock index 6c758d6c..d7cbd18c 100644 --- a/gemfiles/rails60_webpacker4.gemfile.lock +++ b/gemfiles/rails60_webpacker4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails60_webpacker5.gemfile.lock b/gemfiles/rails60_webpacker5.gemfile.lock index c29818be..f95c8f9f 100644 --- a/gemfiles/rails60_webpacker5.gemfile.lock +++ b/gemfiles/rails60_webpacker5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails61_sprockets4.gemfile.lock b/gemfiles/rails61_sprockets4.gemfile.lock index 9a8d3605..ce9ce707 100644 --- a/gemfiles/rails61_sprockets4.gemfile.lock +++ b/gemfiles/rails61_sprockets4.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails61_webpacker5.gemfile.lock b/gemfiles/rails61_webpacker5.gemfile.lock index 79e297e8..4edf6dad 100644 --- a/gemfiles/rails61_webpacker5.gemfile.lock +++ b/gemfiles/rails61_webpacker5.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/gemfiles/rails61_webpacker6.gemfile.lock b/gemfiles/rails61_webpacker6.gemfile.lock index 53785e34..141e4528 100644 --- a/gemfiles/rails61_webpacker6.gemfile.lock +++ b/gemfiles/rails61_webpacker6.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - super (0.0.16) + super (0.17.0) railties (>= 5.0) GEM diff --git a/lib/super/version.rb b/lib/super/version.rb index 8dbb5795..9cbf74dd 100644 --- a/lib/super/version.rb +++ b/lib/super/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Super - VERSION = "0.0.16" + VERSION = "0.17.0" end