From 335f6d1854cdbf8ad74b71c018230522536718ac Mon Sep 17 00:00:00 2001 From: Max VelDink Date: Thu, 4 Jul 2024 22:37:20 -0400 Subject: [PATCH] chore(main): release 0.6.0 --- CHANGELOG.md | 16 ++++++++++++++++ Gemfile.lock | 2 +- lib/sorbet-schema/version.rb | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf45aa0..a598750 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ 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.6.0](https://github.com/maxveldink/sorbet-schema/compare/v0.5.1...v0.6.0) (2024-07-05) + + +### ⚠ BREAKING CHANGES + +* implement default handling for fields ([#105](https://github.com/maxveldink/sorbet-schema/issues/105)) + +### Features + +* implement default handling for fields ([#105](https://github.com/maxveldink/sorbet-schema/issues/105)) ([054d59f](https://github.com/maxveldink/sorbet-schema/commit/054d59ff92c68b272d495a0816370b9a890f0f50)) + + +### Bug Fixes + +* default value set to true causes undefined method [] error ([#108](https://github.com/maxveldink/sorbet-schema/issues/108)) ([6829bbf](https://github.com/maxveldink/sorbet-schema/commit/6829bbf8b6bf47db51209e9874608b7e10c38b8e)) + ## [0.5.1](https://github.com/maxveldink/sorbet-schema/compare/v0.5.0...v0.5.1) (2024-06-26) diff --git a/Gemfile.lock b/Gemfile.lock index ddebd74..4e85f9c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - sorbet-schema (0.5.1) + sorbet-schema (0.6.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 d875de5..480fa7a 100644 --- a/lib/sorbet-schema/version.rb +++ b/lib/sorbet-schema/version.rb @@ -1,5 +1,5 @@ # typed: strict module SorbetSchema - VERSION = "0.5.1" + VERSION = "0.6.0" end