From 3ae47d75a6330b1d7655f5239a3b2da2152b2d48 Mon Sep 17 00:00:00 2001 From: Nick Campbell Date: Mon, 25 Jul 2022 11:03:50 +0100 Subject: [PATCH] Release v0.5.0 --- CHANGELOG.md | 8 +++++++- Gemfile.lock | 2 +- lib/serialize_attributes/version.rb | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2924aae..b67be02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0] + * Add `enum` type using validator to core library. ## [0.4.1] @@ -34,6 +36,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Initial release -[Unreleased]: https://github.com/zaikio/serialize_attributes/compare/v0.3.0..HEAD +[Unreleased]: https://github.com/zaikio/serialize_attributes/compare/v0.5.0..HEAD +[0.5.0]: https://github.com/zaikio/serialize_attributes/compare/v0.4.1..v0.5.0 +[0.4.1]: https://github.com/zaikio/serialize_attributes/compare/v0.4.0..v0.4.1 +[0.4.0]: https://github.com/zaikio/serialize_attributes/compare/v0.3.1..v0.4.0 +[0.3.1]: https://github.com/zaikio/serialize_attributes/compare/v0.3.0..v0.3.1 [0.3.0]: https://github.com/zaikio/serialize_attributes/compare/v0.2.0..v0.3.0 [0.2.0]: https://github.com/zaikio/serialize_attributes/compare/v0.1.0..v0.2.0 diff --git a/Gemfile.lock b/Gemfile.lock index d47377e..3e8b584 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - serialize_attributes (0.4.1) + serialize_attributes (0.5.0) activemodel (>= 6) GEM diff --git a/lib/serialize_attributes/version.rb b/lib/serialize_attributes/version.rb index 0f8e473..adca2ab 100644 --- a/lib/serialize_attributes/version.rb +++ b/lib/serialize_attributes/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module SerializeAttributes - VERSION = "0.4.1" + VERSION = "0.5.0" end