diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e597f26..c65a9857 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## 0.10.x -### [master (unreleased)](https://github.com/rails-api/active_model_serializers/compare/v0.10.0.rc5...master) +### [master (unreleased)](https://github.com/rails-api/active_model_serializers/compare/v0.10.0...master) + +### v0.10.0 (2016-05-17) Breaking changes: - [#1662](https://github.com/rails-api/active_model_serializers/pull/1662) Drop support for Rails 4.0 and Ruby 2.0.0. (@remear) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 06d5858f..4c006f45 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,7 +7,7 @@ Before opening an issue, try the following: See if your issue can be resolved by information in the documentation. - [0.10 (master) Documentation](https://github.com/rails-api/active_model_serializers/tree/master/docs) - - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/v0.10.0.rc5) + - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/v0.10.0) - [Guides](docs) - [0.9 (0-9-stable) Documentation](https://github.com/rails-api/active_model_serializers/tree/0-9-stable) - [0.8 (0-8-stable) Documentation](https://github.com/rails-api/active_model_serializers/tree/0-8-stable) diff --git a/README.md b/README.md index 4bb5ef10..0b439b1d 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ ## Documentation - [0.10 (master) Documentation](https://github.com/rails-api/active_model_serializers/tree/master) - - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/v0.10.0.rc5) + - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/v0.10.0) - [Guides](docs) - [0.9 (0-9-stable) Documentation](https://github.com/rails-api/active_model_serializers/tree/0-9-stable) - [![API Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/github/rails-api/active_model_serializers/0-9-stable) diff --git a/lib/active_model/serializer/version.rb b/lib/active_model/serializer/version.rb index ecaad357..af02f648 100644 --- a/lib/active_model/serializer/version.rb +++ b/lib/active_model/serializer/version.rb @@ -1,5 +1,5 @@ module ActiveModel class Serializer - VERSION = '0.10.0.rc5'.freeze + VERSION = '0.10.0'.freeze end end