Skip to content

Commit

Permalink
[rspec-support] v3.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JonRowe committed Dec 2, 2024
1 parent a173d1b commit cb4af4f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
10 changes: 9 additions & 1 deletion rspec-support/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
### Development
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.1...3-13-maintenance)
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.2...3-13-maintenance)

### 3.13.2 / 2024-12-02
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.1...v3.13.2)

Bug Fixes:

* Prevent recursive calls to stubbed methods during stub invocation.
(James Dabbs, rspec/rspec#116)

### 3.13.1 / 2024-02-23
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.0...v3.13.1)
Expand Down
1 change: 1 addition & 0 deletions rspec-support/Rakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require "bundler"
Bundler.setup
Bundler::GemHelper.install_tasks
Bundler::GemHelper.tag_prefix = 'rspec-support-'

require "rake"

Expand Down
2 changes: 1 addition & 1 deletion rspec-support/lib/rspec/support/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module RSpec
module Support
module Version
STRING = '3.13.1'
STRING = '3.13.2'
end
end
end
8 changes: 4 additions & 4 deletions rspec-support/rspec-support.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ Gem::Specification.new do |spec|
spec.version = RSpec::Support::Version::STRING
spec.authors = ["David Chelimsky","Myron Marson","Jon Rowe","Sam Phippen","Xaviery Shay","Bradley Schaefer"]
spec.email = "rspec-users@rubyforge.org"
spec.homepage = "https://github.com/rspec/rspec-support"
spec.homepage = "https://github.com/rspec/rspec"
spec.summary = "rspec-support-#{RSpec::Support::Version::STRING}"
spec.description = "Support utilities for RSpec gems"
spec.license = "MIT"

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

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

0 comments on commit cb4af4f

Please sign in to comment.