Skip to content

Commit

Permalink
v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Verseth committed May 13, 2024
1 parent c6447d1 commit 02b5fbd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.1.5] - 2024-05-13

- Fix a bug in the tapioca compiler

## [0.1.4] - 2024-05-13

- Add a tapioca compiler for shale and shale builder
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
shale-builder (0.1.4)
shale-builder (0.1.5)
shale (< 2.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/shale/builder/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
module Shale
module Builder
# @return [String]
VERSION = '0.1.4'
VERSION = '0.1.5'
end
end
6 changes: 6 additions & 0 deletions lib/tapioca/dsl/compilers/shale.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# typed: true
# frozen_string_literal: true

require 'shale'
begin
require 'shale/builder'
rescue LoadError
end

module Tapioca
module Compilers
class Shale < Tapioca::Dsl::Compiler
Expand Down

0 comments on commit 02b5fbd

Please sign in to comment.