File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- ### 0.2.3 (Next)
1
+ ### 0.3.0 (Next)
2
2
3
3
* [ #70 ] ( https://github.com/ruby-grape/grape-swagger-rails/pull/70 ) : Rails 5 support - [ @serggl ] ( https://github.com/serggl ) .
4
4
* [ #68 ] ( https://github.com/ruby-grape/grape-swagger-rails/pull/68 ) : Added danger, PR linter - [ @dblock ] ( https://github.com/dblock ) .
Original file line number Diff line number Diff line change 3
3
module GrapeSwaggerRails
4
4
class Options < OpenStruct
5
5
def before_filter ( &block )
6
- ActiveSupport ::Deprecation . warn ( 'This option is deprecated and going to be removed in 0.3 .0. ' \
6
+ ActiveSupport ::Deprecation . warn ( 'This option is deprecated and going to be removed in 1.0 .0. ' \
7
7
'Please use `before_action` instead' )
8
8
before_action ( &block )
9
9
end
Original file line number Diff line number Diff line change 107
107
GrapeSwaggerRails . options . before_filter { true }
108
108
109
109
expect ( ActiveSupport ::Deprecation ) . to have_received ( :warn ) . with ( 'This option is deprecated ' \
110
- 'and going to be removed in 0.3 .0. Please use `before_action` instead' )
110
+ 'and going to be removed in 1.0 .0. Please use `before_action` instead' )
111
111
end
112
112
end
113
113
context '#before_action' do
You can’t perform that action at this time.
0 commit comments