Skip to content

Commit 2362ae7

Browse files
release: v1.5.0 (#663)
Signed-off-by: Eliott Bouhana <eliott.bouhana@datadoghq.com> Co-authored-by: dd-k9-library-go[bot] <214463715+dd-k9-library-go[bot]@users.noreply.github.com>
1 parent 87ba6d2 commit 2362ae7

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ jobs:
344344
- lint-workflows
345345
- unit-tests
346346
- integration-tests
347-
- benchmark-report
347+
- benchmark
348348
if: '!cancelled()'
349349
steps:
350350
- name: Success

_docs/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
cloud.google.com/go/pubsub v1.49.0
1313
github.com/99designs/gqlgen v0.17.76
1414
github.com/DataDog/dd-trace-go/orchestrion/all/v2 v2.1.0
15-
github.com/DataDog/orchestrion v1.4.0
15+
github.com/DataDog/orchestrion v1.5.0
1616
github.com/DataDog/orchestrion/instrument v1.4.0
1717
github.com/IBM/sarama v1.45.2
1818
github.com/Shopify/sarama v1.38.1

instrument/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/DataDog/orchestrion => ..
66

77
require (
88
github.com/DataDog/dd-trace-go/orchestrion/all/v2 v2.0.1
9-
github.com/DataDog/orchestrion v1.4.0
9+
github.com/DataDog/orchestrion v1.5.0
1010
)
1111

1212
require (

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import "runtime/debug"
99

1010
const (
1111
// tag specifies the current release tag. It needs to be manually updated.
12-
tag = "v1.4.0"
12+
tag = "v1.5.0"
1313
devSuffix = "+dev"
1414
)
1515

main_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ type benchGithub struct {
9696

9797
func benchmarkGithub(owner string, repo string, build string, testbuild bool) func(b *testing.B) benchCase {
9898
return func(b *testing.B) benchCase {
99-
b.Helper()
100-
10199
tc := &benchGithub{harness{build: build, testbuild: testbuild}}
102100

103101
tag := tc.findLatestGithubReleaseTag(b, owner, repo)
@@ -225,7 +223,7 @@ func (*harness) findLatestGithubReleaseTag(b *testing.B, owner string, repo stri
225223
var tagName string
226224
for _, release := range payload {
227225
if release.Prerelease {
228-
// We're excluding pre-releases, just because.
226+
// We're excluding pre-releases because they break
229227
continue
230228
}
231229
if tagName == "" || semver.Compare(tagName, release.TagName) < 0 {

samples/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace (
99

1010
require (
1111
github.com/99designs/gqlgen v0.17.76
12-
github.com/DataDog/orchestrion v1.4.0
12+
github.com/DataDog/orchestrion v1.5.0
1313
github.com/DataDog/orchestrion/instrument v1.4.0
1414
github.com/IBM/sarama v1.45.2
1515
github.com/Shopify/sarama v1.38.1

0 commit comments

Comments
 (0)