From 4e17184871d05109ec1728adbbb05d556e5971ee Mon Sep 17 00:00:00 2001 From: Xin Chen <43769500+xchen1189@users.noreply.github.com> Date: Mon, 5 Jul 2021 21:15:53 -0500 Subject: [PATCH] bump version to 2.3.0 (#2) --- CHANGELOG.md | 6 ++++++ lib/jsonapi/serializer/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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