Skip to content

Commit 33cda49

Browse files
committed
Cut RuboCop 0.48.1
1 parent 2dc72ae commit 33cda49

File tree

5 files changed

+286
-3
lines changed

5 files changed

+286
-3
lines changed

CHANGELOG.md

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

33
## master (unreleased)
44

5+
## 0.48.1 (2017-04-03)
6+
57
### Changes
68

79
* [#4219](https://github.com/bbatsov/rubocop/issues/4219): Add a link to style guide for `Style/IndentationConsistency` cop. ([@pocke][])

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ haven't reached version 1.0 yet). To prevent an unwanted RuboCop update you
5050
might want to use a conservative version locking in your `Gemfile`:
5151

5252
```rb
53-
gem 'rubocop', '~> 0.48.0', require: false
53+
gem 'rubocop', '~> 0.48.1', require: false
5454
```
5555

5656
## Quickstart

lib/rubocop/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module RuboCop
44
# This module holds the RuboCop version information.
55
module Version
6-
STRING = '0.48.0'.freeze
6+
STRING = '0.48.1'.freeze
77

88
MSG = '%s (using Parser %s, running on %s %s %s)'.freeze
99

manual/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ haven't reached version 1.0 yet). To prevent an unwanted RuboCop update you
1616
might want to use a conservative version locking in your `Gemfile`:
1717

1818
```rb
19-
gem 'rubocop', '~> 0.48.0', require: false
19+
gem 'rubocop', '~> 0.48.1', require: false
2020
```

relnotes/v0.48.1.md

Lines changed: 281 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,281 @@
1+
### Changes
2+
3+
* [#4219](https://github.com/bbatsov/rubocop/issues/4219): Add a link to style guide for `Style/IndentationConsistency` cop. ([@pocke][])
4+
* [#4168](https://github.com/bbatsov/rubocop/issues/4168): Removed `-n` option. ([@sadovnik][])
5+
* [#4039](https://github.com/bbatsov/rubocop/pull/4039): Change `Style/PercentLiteralDelimiters` default configuration to match Style Guide update. ([@drenmi][])
6+
* [#4235](https://github.com/bbatsov/rubocop/pull/4235): Improved copy of offense message in `Lint/AmbiguousBlockAssociation` cop. ([@smakagon][])
7+
8+
### Bug fixes
9+
10+
* [#4171](https://github.com/bbatsov/rubocop/pull/4171): Prevent `Rails/Blank` from breaking when RHS of `or` is a naked falsiness check. ([@drenmi][])
11+
* [#4189](https://github.com/bbatsov/rubocop/pull/4189): Make `Lint/AmbiguousBlockAssociation` aware of lambdas passed as arguments. ([@drenmi][])
12+
* [#4179](https://github.com/bbatsov/rubocop/pull/4179): Prevent `Rails/Blank` from breaking when LHS of `or` is a naked falsiness check. ([@rrosenblum][])
13+
* [#4172](https://github.com/bbatsov/rubocop/pull/4172): Fix false positives in `Style/MixinGrouping` cop. ([@drenmi][])
14+
* [#4185](https://github.com/bbatsov/rubocop/pull/4185): Make `Lint/NestedMethodDefinition` aware of `#*_exec` class of methods. ([@drenmi][])
15+
* [#4197](https://github.com/bbatsov/rubocop/pull/4197): Fix false positive in `Style/RedundantSelf` cop with parallel assignment. ([@drenmi][])
16+
* [#4199](https://github.com/bbatsov/rubocop/issues/4199): Fix incorrect auto correction in `Style/SymbolArray` and `Style/WordArray` cop. ([@pocke][])
17+
* [#4218](https://github.com/bbatsov/rubocop/pull/4218): Make `Lint/NestedMethodDefinition` aware of class shovel scope. ([@drenmi][])
18+
* [#4198](https://github.com/bbatsov/rubocop/pull/4198): Make `Lint/AmbguousBlockAssociation` aware of operator methods. ([@drenmi][])
19+
* [#4152](https://github.com/bbatsov/rubocop/pull/4152): Make `Style/MethodCallWithArgsParentheses` not require parens on setter methods. ([@drenmi][])
20+
* [#4226](https://github.com/bbatsov/rubocop/pull/4226): Show in `--help` output that `--stdin` takes a file name argument. ([@jonas054][])
21+
* [#4217](https://github.com/bbatsov/rubocop/pull/4217): Fix false positive in `Rails/FilePath` cop with non string argument. ([@soutaro][])
22+
* [#4106](https://github.com/bbatsov/rubocop/pull/4106): Make `Style/TernaryParentheses` unsafe autocorrect detector aware of literals and constants. ([@drenmi][])
23+
* [#4228](https://github.com/bbatsov/rubocop/pull/4228): Fix false positive in `Lint/AmbiguousBlockAssociation` cop. ([@smakagon][])
24+
* [#4234](https://github.com/bbatsov/rubocop/pull/4234): Fix false positive in `Rails/RelativeDate` for lambdas and procs. ([@smakagon][])
25+
26+
[@bbatsov]: https://github.com/bbatsov
27+
[@jonas054]: https://github.com/jonas054
28+
[@yujinakayama]: https://github.com/yujinakayama
29+
[@dblock]: https://github.com/dblock
30+
[@nevir]: https://github.com/nevir
31+
[@daviddavis]: https://github.com/daviddavis
32+
[@sds]: https://github.com/sds
33+
[@fancyremarker]: https://github.com/fancyremarker
34+
[@sinisterchipmunk]: https://github.com/sinisterchipmunk
35+
[@vonTronje]: https://github.com/vonTronje
36+
[@agrimm]: https://github.com/agrimm
37+
[@pmenglund]: https://github.com/pmenglund
38+
[@chulkilee]: https://github.com/chulkilee
39+
[@codez]: https://github.com/codez
40+
[@cyberdelia]: https://github.com/cyberdelia
41+
[@emou]: https://github.com/emou
42+
[@skanev]: http://github.com/skanev
43+
[@claco]: http://github.com/claco
44+
[@rifraf]: http://github.com/rifraf
45+
[@scottmatthewman]: https://github.com/scottmatthewman
46+
[@ma2gedev]: http://github.com/ma2gedev
47+
[@jeremyolliver]: https://github.com/jeremyolliver
48+
[@hannestyden]: https://github.com/hannestyden
49+
[@geniou]: https://github.com/geniou
50+
[@jkogara]: https://github.com/jkogara
51+
[@tmorris-fiksu]: https://github.com/tmorris-fiksu
52+
[@mockdeep]: https://github.com/mockdeep
53+
[@hiroponz]: https://github.com/hiroponz
54+
[@tamird]: https://github.com/tamird
55+
[@fshowalter]: https://github.com/fshowalter
56+
[@cschramm]: https://github.com/cschramm
57+
[@bquorning]: https://github.com/bquorning
58+
[@bcobb]: https://github.com/bcobb
59+
[@irrationalfab]: https://github.com/irrationalfab
60+
[@tommeier]: https://github.com/tommeier
61+
[@sfeldon]: https://github.com/sfeldon
62+
[@biinari]: https://github.com/biinari
63+
[@barunio]: https://github.com/barunio
64+
[@molawson]: https://github.com/molawson
65+
[@wndhydrnt]: https://github.com/wndhydrnt
66+
[@ggilder]: https://github.com/ggilder
67+
[@salbertson]: https://github.com/salbertson
68+
[@camilleldn]: https://github.com/camilleldn
69+
[@mcls]: https://github.com/mcls
70+
[@yous]: https://github.com/yous
71+
[@vrthra]: https://github.com/vrthra
72+
[@SkuliOskarsson]: https://github.com/SkuliOskarsson
73+
[@jspanjers]: https://github.com/jspanjers
74+
[@sch1zo]: https://github.com/sch1zo
75+
[@smangelsdorf]: https://github.com/smangelsdorf
76+
[@mvz]: https://github.com/mvz
77+
[@jfelchner]: https://github.com/jfelchner
78+
[@janraasch]: https://github.com/janraasch
79+
[@jcarbo]: https://github.com/jcarbo
80+
[@oneamtu]: https://github.com/oneamtu
81+
[@toy]: https://github.com/toy
82+
[@Koronen]: https://github.com/Koronen
83+
[@blainesch]: https://github.com/blainesch
84+
[@marxarelli]: https://github.com/marxarelli
85+
[@katieschilling]: https://github.com/katieschilling
86+
[@kakutani]: https://github.com/kakutani
87+
[@rrosenblum]: https://github.com/rrosenblum
88+
[@mattjmcnaughton]: https://github.com/mattjmcnaughton
89+
[@huerlisi]: https://github.com/huerlisi
90+
[@volkert]: https://github.com/volkert
91+
[@lumeet]: https://github.com/lumeet
92+
[@mmozuras]: https://github.com/mmozuras
93+
[@d4rk5eed]: https://github.com/d4rk5eed
94+
[@cshaffer]: https://github.com/cshaffer
95+
[@eitoball]: https://github.com/eitoball
96+
[@iainbeeston]: https://github.com/iainbeeston
97+
[@pimterry]: https://github.com/pimterry
98+
[@palkan]: https://github.com/palkan
99+
[@jdoconnor]: https://github.com/jdoconnor
100+
[@meganemura]: https://github.com/meganemura
101+
[@zvkemp]: https://github.com/zvkemp
102+
[@vassilevsky]: https://github.com/vassilevsky
103+
[@gerry3]: https://github.com/gerry3
104+
[@ypresto]: https://github.com/ypresto
105+
[@clowder]: https://github.com/clowder
106+
[@mudge]: https://github.com/mudge
107+
[@mzp]: https://github.com/mzp
108+
[@bankair]: https://github.com/bankair
109+
[@crimsonknave]: https://github.com/crimsonknave
110+
[@renuo]: https://github.com/renuo
111+
[@sdeframond]: https://github.com/sdeframond
112+
[@til]: https://github.com/til
113+
[@carhartl]: https://github.com/carhartl
114+
[@dylandavidson]: https://github.com/dylandavidson
115+
[@tmr08c]: https://github.com/tmr08c
116+
[@hbd225]: https://github.com/hbd225
117+
[@l8nite]: https://github.com/l8nite
118+
[@sumeet]: https://github.com/sumeet
119+
[@ojab]: https://github.com/ojab
120+
[@chastell]: https://github.com/chastell
121+
[@glasnt]: https://github.com/glasnt
122+
[@crazydog115]: https://github.com/crazydog115
123+
[@RGBD]: https://github.com/RGBD
124+
[@panthomakos]: https://github.com/panthomakos
125+
[@matugm]: https://github.com/matugm
126+
[@m1foley]: https://github.com/m1foley
127+
[@tejasbubane]: https://github.com/tejasbubane
128+
[@bmorrall]: https://github.com/bmorrall
129+
[@fphilipe]: https://github.com/fphilipe
130+
[@gotrevor]: https://github.com/gotrevor
131+
[@awwaiid]: https://github.com/awwaiid
132+
[@segiddins]: https://github.com/segiddins
133+
[@urbanautomaton]: https://github.com/urbanautomaton.com
134+
[@unmanbearpig]: https://github.com/unmanbearpig
135+
[@maxjacobson]: https://github.com/maxjacobson
136+
[@sliuu]: https://github.com/sliuu
137+
[@edmz]: https://github.com/edmz
138+
[@syndbg]: https://github.com/syndbg
139+
[@wli]: https://github.com/wli
140+
[@caseywebdev]: https://github.com/caseywebdev
141+
[@MGerrior]: https://github.com/MGerrior
142+
[@imtayadeway]: https://github.com/imtayadeway
143+
[@mrfoto]: https://github.com/mrfoto
144+
[@karreiro]: https://github.com/karreiro
145+
[@dreyks]: https://github.com/dreyks
146+
[@hmadison]: https://github.com/hmadison
147+
[@miquella]: https://github.com/miquella
148+
[@jhansche]: https://github.com/jhansche
149+
[@cornelius]: https://github.com/cornelius
150+
[@eagletmt]: https://github.com/eagletmt
151+
[@apiology]: https://github.com/apiology
152+
[@alexdowad]: https://github.com/alexdowad
153+
[@minustehbare]: https://github.com/minustehbare
154+
[@tansaku]: https://github.com/tansaku
155+
[@ptrippett]: https://github.com/ptrippett
156+
[@br3nda]: https://github.com/br3nda
157+
[@jujugrrr]: https://github.com/jujugrrr
158+
[@sometimesfood]: https://github.com/sometimesfood
159+
[@cgriego]: https://github.com/cgriego
160+
[@savef]: https://github.com/savef
161+
[@volmer]: https://github.com/volmer
162+
[@domcleal]: https://github.com/domcleal
163+
[@codebeige]: https://github.com/codebeige
164+
[@weh]: https://github.com/weh
165+
[@bfontaine]: https://github.com/bfontaine
166+
[@jawshooah]: https://github.com/jawshooah
167+
[@DNNX]: https://github.com/DNNX
168+
[@mvidner]: https://github.com/mvidner
169+
[@mattparlane]: https://github.com/mattparlane
170+
[@drenmi]: https://github.com/drenmi
171+
[@georgyangelov]: https://github.com/georgyangelov
172+
[@owst]: https://github.com/owst
173+
[@seikichi]: https://github.com/seikichi
174+
[@madwort]: https://github.com/madwort
175+
[@annih]: https://github.com/annih
176+
[@mmcguinn]: https://github.com/mmcguinn
177+
[@pocke]: https://github.com/pocke
178+
[@prsimp]: https://github.com/prsimp
179+
[@ptarjan]: https://github.com/ptarjan
180+
[@jweir]: https://github.com/jweir
181+
[@Fryguy]: https://github.com/Fryguy
182+
[@mikegee]: https://github.com/mikegee
183+
[@tbrisker]: https://github.com/tbrisker
184+
[@necojackarc]: https://github.com/necojackarc
185+
[@laurelfan]: https://github.com/laurelfan
186+
[@amuino]: https://github.com/amuino
187+
[@dylanahsmith]: https://github.com/dylanahsmith
188+
[@gerrywastaken]: https://github.com/gerrywastaken
189+
[@bolshakov]: https://github.com/bolshakov
190+
[@jastkand]: https://github.com/jastkand
191+
[@graemeboy]: https://github.com/graemeboy
192+
[@akihiro17]: https://github.com/akihiro17
193+
[@magni-]: https://github.com/magni-
194+
[@NobodysNightmare]: https://github.com/NobodysNightmare
195+
[@gylaz]: https://github.com/gylaz
196+
[@tjwp]: https://github.com/tjwp
197+
[@neodelf]: https://github.com/neodelf
198+
[@josh]: https://github.com/josh
199+
[@natalzia-paperless]: https://github.com/natalzia-paperless
200+
[@jules2689]: https://github.com/jules2689
201+
[@giannileggio]: https://github.com/giannileggio
202+
[@deivid-rodriguez]: https://github.com/deivid-rodriguez
203+
[@pclalv]: https://github.com/pclalv
204+
[@flexoid]: https://github.com/flexoid
205+
[@sgringwe]: https://github.com/sgringwe
206+
[@Tei]: https://github.com/Tei
207+
[@haziqhafizuddin]: https://github.com/haziqhafizuddin
208+
[@dvandersluis]: https://github.com/dvandersluis
209+
[@QuinnHarris]: https://github.com/QuinnHarris
210+
[@sooyang]: https://github.com/sooyang
211+
[@metcalf]: https://github.com/metcalf
212+
[@annaswims]: https://github.com/annaswims
213+
[@soutaro]: https://github.com/soutaro
214+
[@nicklamuro]: https://github.com/nicklamuro
215+
[@mikezter]: https://github.com/mikezter
216+
[@joejuzl]: https://github.com/joejuzl
217+
[@hedgesky]: https://github.com/hedgesky
218+
[@tjwallace]: https://github.com/tjwallace
219+
[@scottohara]: https://github.com/scottohara
220+
[@koic]: https://github.com/koic
221+
[@groddeck]: https://github.com/groddeck
222+
[@b-t-g]: https://github.com/b-t-g
223+
[@coorasse]: https://github.com/coorasse
224+
[@scottmatthewman]: https://github.com/scottmatthewman
225+
[@tcdowney]: https://github.com/tcdowney
226+
[@logicminds]: https://github.com/logicminds
227+
[@abrom]: https://github.com/abrom
228+
[@thegedge]: https://github.com/thegedge
229+
[@jmks]: https://github.com/jmks/
230+
[@connorjacobsen]: https://github.com/connorjacobsen
231+
[@legendetm]: https://github.com/legendetm
232+
[@bronson]: https://github.com/bronson
233+
[@albus522]: https://github.com/albus522
234+
[@sihu]: https://github.com/sihu
235+
[@kamaradclimber]: https://github.com/kamaradclimber
236+
[@swcraig]: https://github.com/swcraig
237+
[@jessieay]: https://github.com/jessieay
238+
[@tiagocasanovapt]: https://github.com/tiagocasanovapt
239+
[@iGEL]: https://github.com/iGEL
240+
[@tessi]: https://github.com/tessi
241+
[@ivanovaleksey]: https://github.com/ivanovaleksey
242+
[@Ana06]: https://github.com/Ana06
243+
[@aroben]: https://github.com/aroben
244+
[@olliebennett]: https://github.com/olliebennett
245+
[@aesthetikx]: https://github.com/aesthetikx
246+
[@tdeo]: https://github.com/tdeo
247+
[@AlexWayfer]: https://github.com/AlexWayfer
248+
[@amogil]: https://github.com/amogil
249+
[@kevindew]: https://github.com/kevindew
250+
[@lucasuyezu]: https://github.com/lucasuyezu
251+
[@breckenedge]: https://github.com/breckenedge
252+
[@enriikke]: https://github.com/enriikke
253+
[@iguchi1124]: https://github.com/iguchi1124
254+
[@vergenzt]: https://github.com/vergenzt
255+
[@rahulcs]: https://github.com/rahulcs
256+
[@dominh]: https://github.com/dominh
257+
[@sue445]: https://github.com/sue445
258+
[@zverok]: https://github.com/zverok
259+
[@backus]: https://github.com/backus
260+
[@pat]: https://github.com/pat
261+
[@sinsoku]: https://github.com/sinsoku
262+
[@nodo]: https://github.com/nodo
263+
[@onk]: https://github.com/onk
264+
[@dabroz]: https://github.com/dabroz
265+
[@buenaventure]: https://github.com/buenaventure
266+
[@dorian]: https://github.com/dorian
267+
[@attilahorvath]: https://github.com/attilahorvath
268+
[@droptheplot]: https://github.com/droptheplot
269+
[@wkurniawan07]: https://github.com/wkurniawan07
270+
[@kddeisz]: https://github.com/kddeisz
271+
[@ota42y]: https://github.com/ota42y
272+
[@smakagon]: https://github.com/smakagon
273+
[@musialik]: https://github.com/musialik
274+
[@twe4ked]: https://github.com/twe4ked
275+
[@maxbeizer]: https://github.com/maxbeizer
276+
[@andriymosin]: https://github.com/andriymosin
277+
[@brandonweiss]: https://github.com/brandonweiss
278+
[@betesh]: https://github.com/betesh
279+
[@dpostorivo]: https://github.com/dpostorivo
280+
[@konto-andrzeja]: https://github.com/konto-andrzeja
281+
[@sadovnik]: https://github.com/sadovnik

0 commit comments

Comments
 (0)