Skip to content

Commit

Permalink
fix(instrumentation/crystal/db): add crystal 1.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
stakach committed Jul 16, 2024
1 parent cd3994b commit 9b26aab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: opentelemetry-instrumentation
version: 0.5.3
version: 0.5.4

authors:
- Kirk Haines <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/opentelemetry/instrumentation/crystal/db.cr
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ unless_disabled?("OTEL_CRYSTAL_DISABLE_INSTRUMENTATION_DB") do
end

{% begin %}
alias DB::Types = {% for type in DB::Any.union_types %}Array({{ type.id }}) | {% end %}DB::Any | UUID | Array(UUID)
alias DB::Types = {% for type in DB::Any.union_types %}Array({{ type.id }}) | {% end %}::DB::Any | UUID | Array(UUID)
{% end %}
end
end
Expand Down

0 comments on commit 9b26aab

Please sign in to comment.