Skip to content

Commit cb4af4f

Browse files
committed
[rspec-support] v3.13.2
1 parent a173d1b commit cb4af4f

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

rspec-support/Changelog.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
### Development
2-
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.1...3-13-maintenance)
2+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.2...3-13-maintenance)
3+
4+
### 3.13.2 / 2024-12-02
5+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.1...v3.13.2)
6+
7+
Bug Fixes:
8+
9+
* Prevent recursive calls to stubbed methods during stub invocation.
10+
(James Dabbs, rspec/rspec#116)
311

412
### 3.13.1 / 2024-02-23
513
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.0...v3.13.1)

rspec-support/Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require "bundler"
22
Bundler.setup
33
Bundler::GemHelper.install_tasks
4+
Bundler::GemHelper.tag_prefix = 'rspec-support-'
45

56
require "rake"
67

rspec-support/lib/rspec/support/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module RSpec
44
module Support
55
module Version
6-
STRING = '3.13.1'
6+
STRING = '3.13.2'
77
end
88
end
99
end

rspec-support/rspec-support.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ Gem::Specification.new do |spec|
88
spec.version = RSpec::Support::Version::STRING
99
spec.authors = ["David Chelimsky","Myron Marson","Jon Rowe","Sam Phippen","Xaviery Shay","Bradley Schaefer"]
1010
spec.email = "[email protected]"
11-
spec.homepage = "https://github.com/rspec/rspec-support"
11+
spec.homepage = "https://github.com/rspec/rspec"
1212
spec.summary = "rspec-support-#{RSpec::Support::Version::STRING}"
1313
spec.description = "Support utilities for RSpec gems"
1414
spec.license = "MIT"
1515

1616
spec.metadata = {
17-
'bug_tracker_uri' => 'https://github.com/rspec/rspec-support/issues',
18-
'changelog_uri' => "https://github.com/rspec/rspec-support/blob/v#{spec.version}/Changelog.md",
17+
'bug_tracker_uri' => 'https://github.com/rspec/rspec/issues',
18+
'changelog_uri' => "https://github.com/rspec/rspec/blob/rspec-support-v#{spec.version}/rspec-support/Changelog.md",
1919
'documentation_uri' => 'https://rspec.info/documentation/',
2020
'mailing_list_uri' => 'https://groups.google.com/forum/#!forum/rspec',
21-
'source_code_uri' => 'https://github.com/rspec/rspec-support',
21+
'source_code_uri' => "https://github.com/rspec/rspec/blob/rspec-support-v#{spec.version}/rspec-support",
2222
}
2323

2424
spec.files = `git ls-files -- lib/*`.split("\n")

0 commit comments

Comments
 (0)