From c1ce200df97f84eaff8ba27bb1d3018925455ab4 Mon Sep 17 00:00:00 2001 From: Nate Baer Date: Fri, 2 Feb 2024 15:38:02 -0800 Subject: [PATCH] Create 1.0.2 release Signed-off-by: Nate Baer --- CHANGELOG.md | 3 +++ lib/blueprinter/version.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c60b2792..1be78518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.2 - 2024/02/02 +* 🐛 [BUGFIX] Fixes an issue with reflection where fields are incorrectly override by their definitions in the default view. See [#391](https://github.com/procore-oss/blueprinter/pull/391). Thanks to [@elliothursh](https://github.com/elliothursh). + ## 1.0.1 - 2024/01/19 * 🐛 [BUGFIX] Fixes an issue where serialization performance would become degraded when using a Blueprint that leverages transformers. See [#381](https://github.com/procore-oss/blueprinter/pull/381). Thanks to [@Pritilender](https://github.com/Pritilender). diff --git a/lib/blueprinter/version.rb b/lib/blueprinter/version.rb index 6ff4ac9e..c229b79b 100644 --- a/lib/blueprinter/version.rb +++ b/lib/blueprinter/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Blueprinter - VERSION = '1.0.1' + VERSION = '1.0.2' end