File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,9 @@ language: ruby
3
3
sudo : false
4
4
5
5
rvm :
6
- - 1.9.3
7
6
- 2.0.0
8
7
- 2.1
9
- - 2.2.2
8
+ - 2.2.3
10
9
- ruby-head
11
10
- rbx-2
12
11
26
25
27
26
matrix :
28
27
exclude :
29
- - rvm : 1.9.3
30
- env : RAILS_VERSION=master
31
28
- rvm : 2.0.0
32
29
env : RAILS_VERSION=master
33
30
- rvm : 2.1
Original file line number Diff line number Diff line change 2
2
3
3
Breaking changes:
4
4
5
+ - [ #1360 ] ( https://github.com/rails-api/active_model_serializers/pull/1360 )
6
+ [ #1369 ] ( https://github.com/rails-api/active_model_serializers/pull/1369 ) Drop support for Ruby 1.9.3 (@karaAJC , @maurogeorge )
5
7
- [ #1131 ] ( https://github.com/rails-api/active_model_serializers/pull/1131 ) Remove Serializer#root_name (@beauby )
6
8
- [ #1138 ] ( https://github.com/rails-api/active_model_serializers/pull/1138 ) Introduce Adapter::Base (@bf4 )
7
9
* Adapters now inherit Adapter::Base. 'Adapter' is now a module, no longer a class.
42
44
- [ #1166 ] ( https://github.com/rails-api/active_model_serializers/pull/1166 ) Prefer methods over instance variables (@bf4 )
43
45
- [ #1168 ] ( https://github.com/rails-api/active_model_serializers/pull/1168 ) Fix appveyor failure cache not being expired (@bf4 )
44
46
- [ #1161 ] ( https://github.com/rails-api/active_model_serializers/pull/1161 ) Remove duplicate test helper (@bf4 )
47
+ - [ #1360 ] ( https://github.com/rails-api/active_model_serializers/pull/1360 ) Update CI to test 2.2.2 -> 2.2.3 (@karaAJC )
45
48
46
49
### v0.10.0.rc3 (2015/09/16 15:19 +00:00)
47
50
- [ #1129 ] ( https://github.com/rails-api/active_model_serializers/pull/1129 ) Remove SerializableResource.serialize in favor of ` .new ` (@bf4 )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
spec . test_files = spec . files . grep ( %r{^(test|spec|features)/} )
19
19
spec . require_paths = [ 'lib' ]
20
20
21
- spec . required_ruby_version = '>= 1.9.3 '
21
+ spec . required_ruby_version = '>= 2.0.0 '
22
22
23
23
rails_versions = '>= 4.0'
24
24
spec . add_runtime_dependency 'activemodel' , rails_versions
You can’t perform that action at this time.
0 commit comments