From cc1adb47a2d3b550e67f76113e5641a3edb62892 Mon Sep 17 00:00:00 2001 From: "William (B.J.) Snow Orvis" Date: Thu, 3 Oct 2024 22:50:15 -0700 Subject: [PATCH] Version bump to 1.3.1 --- CHANGELOG.md | 8 ++++++++ lib/recursive_open_struct/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1d75c3..2a3d01f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +1.3.1 / 2024/10/03 +================== + +* FIX for + [#79](https://github.com/aetherknight/recursive-open-struct/issues/79): + Revert #72's change to marshalling and dumping since it is an API-breaking + change. It will be re-added in a new major version after releasing a fix. + 1.3.0 / 2024/10/01 ================== diff --git a/lib/recursive_open_struct/version.rb b/lib/recursive_open_struct/version.rb index 8dfa062..698f09a 100644 --- a/lib/recursive_open_struct/version.rb +++ b/lib/recursive_open_struct/version.rb @@ -3,5 +3,5 @@ require 'ostruct' class RecursiveOpenStruct < OpenStruct - VERSION = "1.3.0" + VERSION = "1.3.1" end