Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusRich committed Oct 25, 2021
1 parent 05287c3 commit 46a5aa4
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0] - 2021-10-25

<!-- ### Added -->

### Changed

- Allow configuring EzAttributes (PR #3)

```ruby
class User
extend EzAttributes.configure(getters: false)

attributes :name, :age, email: '[email protected]'
end

User.new(name: 'Matz', age: 22).name
# NoMethodError (undefined method `name' for #<User:0x000055bac152f130>)
```

- Replace Rubocop with StandardRB

<!-- ### Removed -->
Expand Down Expand Up @@ -48,7 +64,8 @@ end

- Basic module to define class initializers with keyword args.

[unreleased]: https://github.com/MatheusRich/ez_attributes/compare/v0.2.2...HEAD
[unreleased]: https://github.com/MatheusRich/ez_attributes/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/MatheusRich/ez_attributes/releases/tag/v0.3.0
[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
Expand Down

0 comments on commit 46a5aa4

Please sign in to comment.