Skip to content

Commit 69577a7

Browse files
authored
Merge branch 'main' into fix-issue-open-telemetry#11820
2 parents c9ce37f + 128d9b7 commit 69577a7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cmd/otelcorecol/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module go.opentelemetry.io/collector/cmd/otelcorecol
44

55
go 1.22.0
66

7-
toolchain go1.22.9
7+
toolchain go1.22.10
88

99
require (
1010
go.opentelemetry.io/collector/component v0.115.0

consumer/consumerprofiles/profiles.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright The OpenTelemetry Authors
22
// SPDX-License-Identifier: Apache-2.0
33

4-
// Deprecated: [0.115.0] This package is deprecated. Use "go.opentelemetry.io/collector/consumer/xconsumer" instead.
4+
// Deprecated: [0.116.0] This package is deprecated. Use "go.opentelemetry.io/collector/consumer/xconsumer" instead.
55
package consumerprofiles // import "go.opentelemetry.io/collector/consumer/consumerprofiles"
66

77
import (
@@ -15,15 +15,15 @@ var errNilFunc = errors.New("nil consumer func")
1515

1616
// Profiles is an interface that receives pprofile.Profiles, processes it
1717
// as needed, and sends it to the next processing node if any or to the destination.
18-
// Deprecated: [0.115.0] Use xconsumer.Profiles instead.
18+
// Deprecated: [0.116.0] Use xconsumer.Profiles instead.
1919
type Profiles = xconsumer.Profiles
2020

2121
// ConsumeProfilesFunc is a helper function that is similar to ConsumeProfiles.
22-
// Deprecated: [0.115.0] Use xconsumer.ConsumeProfilesFunc instead.
22+
// Deprecated: [0.116.0] Use xconsumer.ConsumeProfilesFunc instead.
2323
type ConsumeProfilesFunc = xconsumer.ConsumeProfilesFunc
2424

2525
// NewProfiles returns a Profiles configured with the provided options.
26-
// Deprecated: [0.115.0] Use xconsumer.NewProfiles instead.
26+
// Deprecated: [0.116.0] Use xconsumer.NewProfiles instead.
2727
func NewProfiles(consume ConsumeProfilesFunc, options ...consumer.Option) (Profiles, error) {
2828
return xconsumer.NewProfiles(consume, options...)
2929
}

0 commit comments

Comments
 (0)