File tree Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Master (Unreleased)
4
4
5
+ ## 1.44.0 (2020-10-20)
6
+
5
7
* Move our documentation from rubocop-rspec.readthedocs.io to docs.rubocop.org/rubocop-rspec. ([ @bquorning ] [ ] )
6
8
* Add ` RSpec/RepeatedIncludeExample ` cop. ([ @biinari ] [ ] )
7
9
* Add ` RSpec/StubbedMock ` cop. ([ @bquorning ] [ ] , [ @pirj ] [ ] )
@@ -513,8 +515,8 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
513
515
[ @rspeicher ] : https://github.com/rspeicher
514
516
[ @jonatas ] : https://github.com/jonatas
515
517
[ @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
518
520
[ @timrogers ] : https://github.com/timrogers
519
521
[ @yevhene ] : https://github.com/yevhene
520
522
[ @walf443 ] : https://github.com/walf443
@@ -559,7 +561,6 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
559
561
[ @andrykonchin ] : https://github.com/andrykonchin
560
562
[ @harrylewis ] : https://github.com/harrylewis
561
563
[ @elliterate ] : https://github.com/elliterate
562
- [ @mlarraz ] : https://github.com/mlarraz
563
564
[ @jtannas ] : https://github.com/jtannas
564
565
[ @mockdeep ] : https://github.com/mockdeep
565
566
[ @biinari ] : https://github.com/biinari
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module RuboCop
4
4
module RSpec
5
5
# Version information for the RSpec RuboCop plugin.
6
6
module Version
7
- STRING = '1.43.2 '
7
+ STRING = '1.44.0 '
8
8
end
9
9
end
10
10
end
Original file line number Diff line number Diff line change 10
10
end
11
11
end
12
12
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
+
13
29
describe 'entry' do
14
30
subject ( :entries ) { lines . grep ( /^\* / ) . map ( &:chomp ) }
15
31
You can’t perform that action at this time.
0 commit comments