File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed
common/src/main/scala/org/typelevel/otel4s/meta
trace/src/main/scala/org/typelevel/otel4s/trace Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ object InstrumentMeta {
46
46
def liftTo [G [_]: Monad ](implicit kt : KindTransformer [F , G ]): InstrumentMeta .Dynamic [G ] =
47
47
mapK(kt.liftK)
48
48
49
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
49
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
50
50
def mapK [G [_]: Monad ](implicit kt : KindTransformer [F , G ]): InstrumentMeta .Dynamic [G ] = liftTo[G ]
51
51
}
52
52
@@ -99,7 +99,7 @@ object InstrumentMeta {
99
99
def liftTo [G [_]](implicit kt : KindTransformer [F , G ]): InstrumentMeta .Static [G ] =
100
100
mapK(kt.liftK)
101
101
102
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
102
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
103
103
def mapK [G [_]](implicit kt : KindTransformer [F , G ]): InstrumentMeta .Static [G ] = liftTo[G ]
104
104
}
105
105
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ trait Span[F[_]] extends SpanMacro[F] {
114
114
final def liftTo [G [_]](implicit kt : KindTransformer [F , G ]): Span [G ] =
115
115
mapK(kt.liftK)
116
116
117
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
117
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
118
118
final def mapK [G [_]](implicit kt : KindTransformer [F , G ]): Span [G ] = liftTo[G ]
119
119
}
120
120
@@ -162,7 +162,7 @@ object Span {
162
162
final def liftTo [G [_]](implicit kt : KindTransformer [F , G ]): Backend [G ] =
163
163
mapK(kt.liftK)
164
164
165
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
165
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
166
166
final def mapK [G [_]](implicit kt : KindTransformer [F , G ]): Backend [G ] = liftTo[G ]
167
167
}
168
168
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ trait SpanBuilder[F[_]] extends SpanBuilderMacro[F] {
58
58
): SpanBuilder [G ] =
59
59
new SpanBuilder .Lifted (this )
60
60
61
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
61
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
62
62
def mapK [G [_]: MonadCancelThrow ](implicit
63
63
F : MonadCancelThrow [F ],
64
64
kt : KindTransformer [F , G ]
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ trait SpanOps[F[_]] {
250
250
): SpanOps [G ] =
251
251
new SpanOps .Lifted (this )
252
252
253
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
253
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
254
254
def mapK [G [_]: MonadCancelThrow ](implicit
255
255
F : MonadCancelThrow [F ],
256
256
kt : KindTransformer [F , G ]
@@ -293,7 +293,7 @@ object SpanOps {
293
293
def liftTo [G [_]](implicit kt : KindTransformer [F , G ]): Res [G ] =
294
294
Res (span.liftTo[G ], kt.liftFunctionK(trace))
295
295
296
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
296
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
297
297
def mapK [G [_]](implicit kt : KindTransformer [F , G ]): Res [G ] = liftTo[G ]
298
298
}
299
299
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ trait Tracer[F[_]] extends TracerMacro[F] {
205
205
): Tracer [G ] =
206
206
new Tracer .Lifted (this )
207
207
208
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
208
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
209
209
def mapK [G [_]: MonadCancelThrow ](implicit
210
210
F : MonadCancelThrow [F ],
211
211
kt : KindTransformer [F , G ]
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ trait TracerBuilder[F[_]] {
49
49
): TracerBuilder [G ] =
50
50
new TracerBuilder .Lifted (this )
51
51
52
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
52
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
53
53
def mapK [G [_]: MonadCancelThrow ](implicit
54
54
F : MonadCancelThrow [F ],
55
55
kt : KindTransformer [F , G ]
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ trait TracerProvider[F[_]] {
66
66
): TracerProvider [G ] =
67
67
new TracerProvider .Lifted (this )
68
68
69
- @ deprecated(" use `liftTo` instead" , since = " otel4s 0.13.1 " )
69
+ @ deprecated(" use `liftTo` instead" , since = " otel4s 0.14.0 " )
70
70
def mapK [G [_]: MonadCancelThrow ](implicit
71
71
F : MonadCancelThrow [F ],
72
72
kt : KindTransformer [F , G ]
You can’t perform that action at this time.
0 commit comments