Skip to content

Commit

Permalink
Bumps version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nolantait committed Dec 19, 2024
1 parent c1474ba commit 7b2c99e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## [Unreleased]

## [0.3.0] - 2024-12-18

- Adds custom Inhouse icons
- Changes argument error to `MissingIcon` error

## [0.1.0] - 2024-03-03

- Initial release
2 changes: 1 addition & 1 deletion lib/protos/icon.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def self.inhouse(name, **)
def self.build(name, ...)
component = maybe(Heroicons, name, ...)
component ||= maybe(Inhouse, name, ...)
raise MissingIcon unless component
raise MissingIcon, "Could not find an icon for #{name}" unless component

component
end
Expand Down
2 changes: 1 addition & 1 deletion lib/protos/icon/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Protos
module Icon
VERSION = "0.2.0"
VERSION = "0.3.0"
end
end

0 comments on commit 7b2c99e

Please sign in to comment.