Skip to content

Commit

Permalink
Released v1.0.0
Browse files Browse the repository at this point in the history
This release marks the gem to be stable enough.
Nothing notable was changed since the last version.

## Documentation

- Added a section about overriding the defaults.
- Added a section about testing.
  • Loading branch information
Alexander-Senko committed Nov 23, 2024
1 parent 5dc8e7e commit 76aae6e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## [1.0.0]UNRELEASED
## [1.0.0]2024-11-23

This release marks the gem to be stable enough.

> [!NOTE]
> Nothing notable was changed in the code since the last version.
### Documentation

- Added a section about overriding the defaults.
Expand Down
2 changes: 2 additions & 0 deletions lib/magic/decorator/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ def decorated? = true
deconstruct_keys
]

private

def method_missing(method, ...)
return super if method.start_with? 'to_' # converter
return super if method.start_with? '_' # system
Expand Down
2 changes: 1 addition & 1 deletion lib/magic/decorator/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Magic
module Decorator
VERSION = '1.0.0.alpha'
VERSION = '1.0.0'
end
end

0 comments on commit 76aae6e

Please sign in to comment.