Skip to content

Commit

Permalink
Merge pull request #1045 from rubocop-hq/release
Browse files Browse the repository at this point in the history
Bump version to 1.44.0
  • Loading branch information
bquorning authored Oct 20, 2020
2 parents e11f6e3 + 68105c8 commit 589a401
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Master (Unreleased)

## 1.44.0 (2020-10-20)

* Move our documentation from rubocop-rspec.readthedocs.io to docs.rubocop.org/rubocop-rspec. ([@bquorning][])
* Add `RSpec/RepeatedIncludeExample` cop. ([@biinari][])
* Add `RSpec/StubbedMock` cop. ([@bquorning][], [@pirj][])
Expand Down Expand Up @@ -513,8 +515,8 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
[@rspeicher]: https://github.com/rspeicher
[@jonatas]: https://github.com/jonatas
[@pocke]: https://github.com/pocke
[@bmorrall]: https:/github.com/bmorrall
[@zverok]: https:/github.com/zverok
[@bmorrall]: https://github.com/bmorrall
[@zverok]: https://github.com/zverok
[@timrogers]: https://github.com/timrogers
[@yevhene]: https://github.com/yevhene
[@walf443]: https://github.com/walf443
Expand Down Expand Up @@ -559,7 +561,6 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
[@andrykonchin]: https://github.com/andrykonchin
[@harrylewis]: https://github.com/harrylewis
[@elliterate]: https://github.com/elliterate
[@mlarraz]: https://github.com/mlarraz
[@jtannas]: https://github.com/jtannas
[@mockdeep]: https://github.com/mockdeep
[@biinari]: https://github.com/biinari
Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/rspec/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module RuboCop
module RSpec
# Version information for the RSpec RuboCop plugin.
module Version
STRING = '1.43.2'
STRING = '1.44.0'
end
end
end
16 changes: 16 additions & 0 deletions spec/project/changelog_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,22 @@
end
end

describe 'contributors' do
let(:contributors) do
changelog.partition("<!-- Contributors -->\n\n").last.lines
end

it 'does not contain duplicates' do
expect(contributors.uniq).to eq(contributors)
end

it 'links to github profiles' do
expect(contributors).to all(
match(%r{\A\[@([^\]]+)\]: https://github.com/\1\n\z})
)
end
end

describe 'entry' do
subject(:entries) { lines.grep(/^\*/).map(&:chomp) }

Expand Down

0 comments on commit 589a401

Please sign in to comment.