Skip to content

Commit 589a401

Browse files
authored
Merge pull request #1045 from rubocop-hq/release
Bump version to 1.44.0
2 parents e11f6e3 + 68105c8 commit 589a401

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Master (Unreleased)
44

5+
## 1.44.0 (2020-10-20)
6+
57
* Move our documentation from rubocop-rspec.readthedocs.io to docs.rubocop.org/rubocop-rspec. ([@bquorning][])
68
* Add `RSpec/RepeatedIncludeExample` cop. ([@biinari][])
79
* Add `RSpec/StubbedMock` cop. ([@bquorning][], [@pirj][])
@@ -513,8 +515,8 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
513515
[@rspeicher]: https://github.com/rspeicher
514516
[@jonatas]: https://github.com/jonatas
515517
[@pocke]: https://github.com/pocke
516-
[@bmorrall]: https:/github.com/bmorrall
517-
[@zverok]: https:/github.com/zverok
518+
[@bmorrall]: https://github.com/bmorrall
519+
[@zverok]: https://github.com/zverok
518520
[@timrogers]: https://github.com/timrogers
519521
[@yevhene]: https://github.com/yevhene
520522
[@walf443]: https://github.com/walf443
@@ -559,7 +561,6 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
559561
[@andrykonchin]: https://github.com/andrykonchin
560562
[@harrylewis]: https://github.com/harrylewis
561563
[@elliterate]: https://github.com/elliterate
562-
[@mlarraz]: https://github.com/mlarraz
563564
[@jtannas]: https://github.com/jtannas
564565
[@mockdeep]: https://github.com/mockdeep
565566
[@biinari]: https://github.com/biinari

lib/rubocop/rspec/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module RuboCop
44
module RSpec
55
# Version information for the RSpec RuboCop plugin.
66
module Version
7-
STRING = '1.43.2'
7+
STRING = '1.44.0'
88
end
99
end
1010
end

spec/project/changelog_spec.rb

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@
1010
end
1111
end
1212

13+
describe 'contributors' do
14+
let(:contributors) do
15+
changelog.partition("<!-- Contributors -->\n\n").last.lines
16+
end
17+
18+
it 'does not contain duplicates' do
19+
expect(contributors.uniq).to eq(contributors)
20+
end
21+
22+
it 'links to github profiles' do
23+
expect(contributors).to all(
24+
match(%r{\A\[@([^\]]+)\]: https://github.com/\1\n\z})
25+
)
26+
end
27+
end
28+
1329
describe 'entry' do
1430
subject(:entries) { lines.grep(/^\*/).map(&:chomp) }
1531

0 commit comments

Comments
 (0)