Bump to v0.10.4

This commit is contained in:
Benjamin Fleischer 2017-01-06 16:21:04 -06:00
parent 23f03ffd30
commit 82db1301f6
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,6 @@
## 0.10.x
### [master (unreleased)](https://github.com/rails-api/active_model_serializers/compare/v0.10.3...master)
### [master (unreleased)](https://github.com/rails-api/active_model_serializers/compare/v0.10.4...master)
Breaking changes:
@ -10,7 +10,12 @@ Fixes:
Misc:
- [#1993](https://github.com/rails-api/active_model_serializers/pull/1993) Swap out KeyTransform for CaseTransform gem for the possibility of native extension use (@NullVoxPopuli)
### [v0.10.4 (2017-01-06)](https://github.com/rails-api/active_model_serializers/compare/v0.10.3...v0.10.4)
Misc:
- [#2005](https://github.com/rails-api/active_model_serializers/pull/2005) Update jsonapi runtime dependency to 0.1.1.beta6, support Ruby 2.4. (@kofronpi)
- [#1993](https://github.com/rails-api/active_model_serializers/pull/1993) Swap out KeyTransform for CaseTransform gem for the possibility of native extension use. (@NullVoxPopuli)
### [v0.10.3 (2016-11-21)](https://github.com/rails-api/active_model_serializers/compare/v0.10.2...v0.10.3)

View File

@ -1,5 +1,5 @@
module ActiveModel
class Serializer
VERSION = '0.10.3'.freeze
VERSION = '0.10.4'.freeze
end
end