From 1bb407e749e41e4fd7de898771833284476e0b03 Mon Sep 17 00:00:00 2001 From: Jon Rowe Date: Mon, 2 Sep 2024 16:34:17 +0100 Subject: [PATCH] v7.0.0 --- Changelog.md | 5 ++++- README.md | 5 +++-- lib/rspec/rails/version.rb | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Changelog.md b/Changelog.md index 5e968764d..21ac7a000 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,8 @@ ### Development -[Full Changelog](https://github.com/rspec/rspec-rails/compare/v7.0.0...main) +[Full Changelog](https://github.com/rspec/rspec-rails/compare/v7.0.0...7-0-maintenance) + +### 7.0.0 / 2024-09-02 +[Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.1.5...v7.0.0) Enhancements: diff --git a/README.md b/README.md index 2d8e271f8..2cd924513 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,9 @@ According to [RSpec Rails new versioning strategy][] use: ## Installation -**IMPORTANT** This README / branch refers to the current development build. -See the [`7-0-maintenance` branch on Github](https://github.com/rspec/rspec-rails/tree/7-0-maintenance) if you want or require the latest stable release. +**IMPORTANT** This README / branch refers to the 7.0.x stable release series, only bugfixes from this series will +be added here. See the [`main` branch on Github](https://github.com/rspec/rspec-rails/tree/main) if you want or +require the latest unstable features. 1. Add `rspec-rails` to **both** the `:development` and `:test` groups of your app’s `Gemfile`: diff --git a/lib/rspec/rails/version.rb b/lib/rspec/rails/version.rb index cd746b581..883fca892 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 = '7.0.0.pre' + STRING = '7.0.0' end end end