Skip to content

Commit 9b26aab

Browse files
committed
fix(instrumentation/crystal/db): add crystal 1.13 support
1 parent cd3994b commit 9b26aab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: opentelemetry-instrumentation
2-
version: 0.5.3
2+
version: 0.5.4
33

44
authors:
55
- Kirk Haines <[email protected]>

src/opentelemetry/instrumentation/crystal/db.cr

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ unless_disabled?("OTEL_CRYSTAL_DISABLE_INSTRUMENTATION_DB") do
4444
end
4545

4646
{% begin %}
47-
alias DB::Types = {% for type in DB::Any.union_types %}Array({{ type.id }}) | {% end %}DB::Any | UUID | Array(UUID)
47+
alias DB::Types = {% for type in DB::Any.union_types %}Array({{ type.id }}) | {% end %}::DB::Any | UUID | Array(UUID)
4848
{% end %}
4949
end
5050
end

0 commit comments

Comments
 (0)