From ae188cc947d5df7ffa05ea4372139e27796dde3e Mon Sep 17 00:00:00 2001 From: "William (B.J.) Snow Orvis" Date: Mon, 27 May 2024 21:47:35 -0700 Subject: [PATCH] Version bump to 1.2.0 --- CHANGELOG.md | 10 ++++++++++ lib/recursive_open_struct/version.rb | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ece990..3ff35cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +1.2.0 / 2024/05/27 +================== + +* [#68](https://github.com/aetherknight/recursive-open-struct/pull/76): + IlyaUmanets: Add `raise_on_missing` option, causing ROS to raise + `NoMethodError` instead of returning `nil` if a field doesn't exist +* MAINT: Switched to Github Actions for CI +* MAINT: No longer officially supporting Ruby versions of 3.0.x or earlier, + updated CI to test 3.1.x, 3.2.x, 3.3.x + 1.1.3 / 2020/10/15 ================== diff --git a/lib/recursive_open_struct/version.rb b/lib/recursive_open_struct/version.rb index fcfd487..faad180 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.1.3" + VERSION = "1.2.0" end