diff --git a/CHANGELOG.md b/CHANGELOG.md index b89563b..81b9bf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ... +## [2.3.0] - 2021-06-05 +- optimize the cache performance by batch load the cache +- support proc on cache_options namespace +- cache_options namespace merged into cache key +- temp disable fieldset support, expect to bring back that in next version + ## [2.2.0] - 2021-03-11 ### Added diff --git a/lib/jsonapi/serializer/version.rb b/lib/jsonapi/serializer/version.rb index 667269e..adce0fe 100644 --- a/lib/jsonapi/serializer/version.rb +++ b/lib/jsonapi/serializer/version.rb @@ -1,5 +1,5 @@ module JSONAPI module Serializer - VERSION = '2.2.0'.freeze + VERSION = '2.3.0'.freeze end end