From c9a55f91f8f35a6ce844297c5b354e4a7b36b981 Mon Sep 17 00:00:00 2001 From: Max VelDink Date: Mon, 5 Aug 2024 10:45:30 -0400 Subject: [PATCH] chore(main): release 0.9.0 --- CHANGELOG.md | 11 +++++++++++ Gemfile.lock | 2 +- lib/sorbet-schema/version.rb | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72a6278..dba123a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.0](https://github.com/maxveldink/sorbet-schema/compare/v0.8.0...v0.9.0) (2024-08-05) + + +### ⚠ BREAKING CHANGES + +* Replace deeply_nested_hash with options passing in struct ext ([#121](https://github.com/maxveldink/sorbet-schema/issues/121)) + +### Code Refactoring + +* Replace deeply_nested_hash with options passing in struct ext ([#121](https://github.com/maxveldink/sorbet-schema/issues/121)) ([48da547](https://github.com/maxveldink/sorbet-schema/commit/48da54733ee29af92605824da40ba39f0fe3f8a0)) + ## [0.8.0](https://github.com/maxveldink/sorbet-schema/compare/v0.7.2...v0.8.0) (2024-07-19) diff --git a/Gemfile.lock b/Gemfile.lock index fc63aae..bb1f8e2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - sorbet-schema (0.8.0) + sorbet-schema (0.9.0) sorbet-result (~> 1.1) sorbet-runtime (~> 0.5) sorbet-struct-comparable (~> 1.3) diff --git a/lib/sorbet-schema/version.rb b/lib/sorbet-schema/version.rb index a954057..fddda68 100644 --- a/lib/sorbet-schema/version.rb +++ b/lib/sorbet-schema/version.rb @@ -1,5 +1,5 @@ # typed: strict module SorbetSchema - VERSION = "0.8.0" + VERSION = "0.9.0" end