Skip to content

Commit c55d1de

Browse files
committed
v6.1.0
1 parent 8a58985 commit c55d1de

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

Changelog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
### Development
2-
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.0.4...main)
2+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.1.0...main)
3+
4+
### 6.1.0 / 2023-11-21
5+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v6.0.4...v6.1.0)
36

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@ 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

3333
**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.
34+
See the [`6-1-maintenance` branch on Github](https://github.com/rspec/rspec-rails/tree/6-0-maintenance) if you want or require the latest stable release.
3535

3636
1. Add `rspec-rails` to **both** the `:development` and `:test` groups
3737
of your app’s `Gemfile`:
3838

3939
```ruby
4040
# Run against this stable release
4141
group :development, :test do
42-
gem 'rspec-rails', '~> 6.0.0'
42+
gem 'rspec-rails', '~> 6.1.0'
4343
end
4444

4545
# 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.2.0.pre'
77
end
88
end
99
end

0 commit comments

Comments
 (0)