diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f45c7e..87d4f01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ 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.4.1](https://github.com/maxveldink/sorbet-schema/compare/v0.4.0...v0.4.1) (2024-03-21) + + +### Features + +* Add DateCoercer ([ef8c1db](https://github.com/maxveldink/sorbet-schema/commit/ef8c1dbdf3bd87ab2e64102fbd1434811aa353d8)) +* Add inline serializer to fields ([dd8042d](https://github.com/maxveldink/sorbet-schema/commit/dd8042d8d88d67d530c7619ee3cbb108957990d1)) + ## [0.4.0](https://github.com/maxveldink/sorbet-schema/compare/v0.3.0...v0.4.0) (2024-03-14) diff --git a/Gemfile.lock b/Gemfile.lock index c7bf263..efc936f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - sorbet-schema (0.4.0) + sorbet-schema (0.4.1) 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 48ba8d3..ffac93d 100644 --- a/lib/sorbet-schema/version.rb +++ b/lib/sorbet-schema/version.rb @@ -1,5 +1,5 @@ # typed: strict module SorbetSchema - VERSION = "0.4.0" + VERSION = "0.4.1" end