Skip to content

Commit 525654e

Browse files
committed
v6.1.0
1 parent 8a58985 commit 525654e

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
### Development
22
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.0.4...main)
33

4+
### 6.1.0 / 2023-11-21
5+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.0.4...v6.1.0)
6+
47
Enhancements:
58

9+
* Support for Rails 7.1
610
* Minor tweak to generated `rails_helper.rb` to use `Rails.root.join`.
711
(@masato-bkn, Ryo Nakamura, #2640, #2678)
812
* Add `RSpec::Rails::Configuration.fixture_paths` configuration to support

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,22 @@ According to [RSpec Rails new versioning strategy][] use:
2525
[`rspec-rails` 3.x]: https://github.com/rspec/rspec-rails/tree/3-9-maintenance
2626
[`rspec-rails` 4.x]: https://github.com/rspec/rspec-rails/tree/4-1-maintenance
2727
[`rspec-rails` 5.x]: https://github.com/rspec/rspec-rails/tree/5-1-maintenance
28-
[`rspec-rails` 6.x]: https://github.com/rspec/rspec-rails/tree/6-0-maintenance
28+
[`rspec-rails` 6.x]: https://github.com/rspec/rspec-rails/tree/6-1-maintenance
2929
[RSpec Rails new versioning strategy]: https://github.com/rspec/rspec-rails/blob/main/rfcs/versioning-strategy.md
3030

3131
## Installation
3232

33-
**IMPORTANT** This README / branch refers to the current development build.
34-
See the [`6-0-maintenance` branch on Github](https://github.com/rspec/rspec-rails/tree/6-0-maintenance) if you want or require the latest stable release.
33+
**IMPORTANT** This README / branch refers to the 6.1.x stable release series, only bugfixes from this series will
34+
be added here. See the [`main` branch on Github](https://github.com/rspec/rspec-rails/tree/main) if you want or
35+
require the latest unstable features.
3536

3637
1. Add `rspec-rails` to **both** the `:development` and `:test` groups
3738
of your app’s `Gemfile`:
3839

3940
```ruby
4041
# Run against this stable release
4142
group :development, :test do
42-
gem 'rspec-rails', '~> 6.0.0'
43+
gem 'rspec-rails', '~> 6.1.0'
4344
end
4445

4546
# Or, run against the main branch

lib/rspec/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module Rails
33
# Version information for RSpec Rails.
44
module Version
55
# Current version of RSpec Rails, in semantic versioning format.
6-
STRING = '6.1.0.pre'
6+
STRING = '6.1.0'
77
end
88
end
99
end

0 commit comments

Comments
 (0)