-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
## [Unreleased] | ||
|
||
## [0.2.0] - 2024-09-29 | ||
|
||
- Allow only true/false for boolean variants | ||
- Allow passing false for variants with only true option | ||
- Improved error message when variant option doesn't exist | ||
- Improved error message when method missing on StyleBuilder | ||
- Improve performance of `build_style` method | ||
|
||
## [0.1.0] - 2024-09-25 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
phlex-variants (0.1.0) | ||
phlex-variants (0.2.0) | ||
phlex (>= 1.9, < 3) | ||
|
||
GEM | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
module Phlex | ||
module Variants | ||
VERSION = "0.1.0" | ||
VERSION = "0.2.0" | ||
end | ||
end |