From 064604441496e0d2de04655c54343adb71884525 Mon Sep 17 00:00:00 2001 From: Jon Rowe Date: Mon, 10 Oct 2022 17:53:27 +0100 Subject: [PATCH] v6.0.0 --- Changelog.md | 21 ++++++++------------- lib/rspec/rails/version.rb | 2 +- 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/Changelog.md b/Changelog.md index 2c0189267..cfc301a60 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,12 +1,19 @@ ### Development -[Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.0.0.rc1...6-0-maintenance) +[Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.0.0...6-0-maintenance) + +### 6.0.0 +[Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.1.2...6.0.0) Enhancements: +* Support Rails 7 +* Template tweaks to remove instance variables from generated specs. (Takuma Ishikawa, #2599) * Generators now respects default path configuration option. (@vivekmiyani, #2508) Breaking Changes: +* Drop support for Rails below 6.1 +* Drop support for Ruby below 2.5 (following supported versions of Rails 6.1) * Change the order of `after_teardown` from `after` to `around` in system specs to improve compatibility with extensions and Capybara. (Tim Diggins, #2596) @@ -16,18 +23,6 @@ Deprecations: which was an alias of request spec generator (`rspec:request`) (Luka Lüdicke, #2374) -### 6.0.0.rc1 - -Enhancements: - -* Support Rails 7 -* Template tweaks to remove instance variables from generated specs. (Takuma Ishikawa, #2599) - -Breaking Changes: - -* Drop support for Rails below 6.1 -* Drop support for Ruby below 2.5 (following supported versions of Rails 6.1) - ### 5.1.2 / 2022-04-24 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.1.1...v5.1.2) diff --git a/lib/rspec/rails/version.rb b/lib/rspec/rails/version.rb index 605db3479..449536b32 100644 --- a/lib/rspec/rails/version.rb +++ b/lib/rspec/rails/version.rb @@ -3,7 +3,7 @@ module Rails # Version information for RSpec Rails. module Version # Current version of RSpec Rails, in semantic versioning format. - STRING = '6.0.0.rc1' + STRING = '6.0.0' end end end