From c8fcf9add1623ca55d8bcf8c4acac453c7b0eb87 Mon Sep 17 00:00:00 2001 From: Svyatoslav Kryukov Date: Tue, 26 Nov 2024 14:42:44 +0300 Subject: [PATCH] Bump 0.2.0 --- CHANGELOG.md | 8 ++++++-- lib/typelizer/version.rb | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de6a758..754fff9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning]. ## [Unreleased] +## [0.2.0] - 2024-11-26 + ## Added - Add support for enum attributes declared using `ActiveRecord::Enum` or explicitly in serializers ([@envek]) @@ -19,7 +21,8 @@ and this project adheres to [Semantic Versioning]. - Do not override `Typelizer.dirs` in the railtie initializer ([@patvice]) - Do not raise on empty nested serializers ([@skryukov]) -- Attribute options merging in inherited serializers ([@Envek]) +- Attribute options merging in inherited serializers ([@envek]) +- Allow recursive type definition ([@okuramasafumi]) ## [0.1.5] - 2024-10-07 @@ -77,7 +80,8 @@ and this project adheres to [Semantic Versioning]. [@patvice]: https://github.com/patvice [@skryukov]: https://github.com/skryukov -[Unreleased]: https://github.com/skryukov/typelizer/compare/v0.1.5...HEAD +[Unreleased]: https://github.com/skryukov/typelizer/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/skryukov/typelizer/compare/v0.1.5...v0.2.0 [0.1.5]: https://github.com/skryukov/typelizer/compare/v0.1.4...v0.1.5 [0.1.4]: https://github.com/skryukov/typelizer/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/skryukov/typelizer/compare/v0.1.2...v0.1.3 diff --git a/lib/typelizer/version.rb b/lib/typelizer/version.rb index 3c24004..61e1b44 100644 --- a/lib/typelizer/version.rb +++ b/lib/typelizer/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Typelizer - VERSION = "0.1.5" + VERSION = "0.2.0" end