Skip to content

Commit 0d74403

Browse files
committed
Bump version
1 parent 759abc7 commit 0d74403

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
<!-- ### Changed -->
1212
<!-- ### Removed -->
1313

14+
## [0.2.2] - 2021-04-30
15+
16+
### Changed
17+
18+
- Fix shared state between class instances. (Commit 759abc7cb971e6a30448f5e9557be4542128d7cf)
19+
1420
## [0.2.1] - 2021-01-20
1521

1622
### Changed
@@ -39,7 +45,8 @@ end
3945

4046
- Basic module to define class initializers with keyword args.
4147

42-
[unreleased]: https://github.com/MatheusRich/ez_attributes/compare/v0.2.1...HEAD
48+
[unreleased]: https://github.com/MatheusRich/ez_attributes/compare/v0.2.2...HEAD
49+
[0.2.2]: https://github.com/MatheusRich/ez_attributes/releases/tag/v0.2.2
4350
[0.2.1]: https://github.com/MatheusRich/ez_attributes/releases/tag/v0.2.1
4451
[0.2.0]: https://github.com/MatheusRich/ez_attributes/releases/tag/v0.2.0
4552
[0.1.0]: https://github.com/MatheusRich/ez_attributes/releases/tag/v0.2.0

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
ez_attributes (0.2.1)
4+
ez_attributes (0.2.2)
55

66
GEM
77
remote: https://rubygems.org/

lib/ez_attributes.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# => #<User:0x000055bac152f130 @name="Matheus", @age=22, @email="guest@user.com">
1616
module EzAttributes
1717
# Gem version
18-
VERSION = '0.2.1'
18+
VERSION = '0.2.2'
1919

2020
# Attributes that won't have a getter to prevent conflicts with default methods
2121
EXCEPTIONS = [:class].freeze

0 commit comments

Comments
 (0)