From 0d74403bfd880e977bba7d707b11e0e72b9505a6 Mon Sep 17 00:00:00 2001 From: Matheus Richard Date: Fri, 30 Apr 2021 09:18:30 -0300 Subject: [PATCH] Bump version --- CHANGELOG.md | 9 ++++++++- Gemfile.lock | 2 +- lib/ez_attributes.rb | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a27d005..4b3751d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [0.2.2] - 2021-04-30 + +### Changed + +- Fix shared state between class instances. (Commit 759abc7cb971e6a30448f5e9557be4542128d7cf) + ## [0.2.1] - 2021-01-20 ### Changed @@ -39,7 +45,8 @@ end - Basic module to define class initializers with keyword args. -[unreleased]: https://github.com/MatheusRich/ez_attributes/compare/v0.2.1...HEAD +[unreleased]: https://github.com/MatheusRich/ez_attributes/compare/v0.2.2...HEAD +[0.2.2]: https://github.com/MatheusRich/ez_attributes/releases/tag/v0.2.2 [0.2.1]: https://github.com/MatheusRich/ez_attributes/releases/tag/v0.2.1 [0.2.0]: https://github.com/MatheusRich/ez_attributes/releases/tag/v0.2.0 [0.1.0]: https://github.com/MatheusRich/ez_attributes/releases/tag/v0.2.0 diff --git a/Gemfile.lock b/Gemfile.lock index e0a0d83..575903d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ez_attributes (0.2.1) + ez_attributes (0.2.2) GEM remote: https://rubygems.org/ diff --git a/lib/ez_attributes.rb b/lib/ez_attributes.rb index 9964440..8c77732 100644 --- a/lib/ez_attributes.rb +++ b/lib/ez_attributes.rb @@ -15,7 +15,7 @@ # => # module EzAttributes # Gem version - VERSION = '0.2.1' + VERSION = '0.2.2' # Attributes that won't have a getter to prevent conflicts with default methods EXCEPTIONS = [:class].freeze