Skip to content

Commit c109cd9

Browse files
authored
DXE-4344 Merge pull request #214 from akamai/release/v9.1.0
Release/v9.1.0
2 parents 83abffb + b1adec1 commit c109cd9

File tree

237 files changed

+4355
-734
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+4355
-734
lines changed

CHANGELOG.md

Lines changed: 500 additions & 429 deletions
Large diffs are not rendered by default.

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright {yyyy} {name of copyright owner}
189+
Copyright 2024 Akamai Technologies, Inc. All rights reserved.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192-
you may not use this file except in compliance with the License.
192+
you may not use these files except in compliance with the License.
193193
You may obtain a copy of the License at
194194

195195
http://www.apache.org/licenses/LICENSE-2.0

Makefile

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,19 @@ $(GOIMPORTS): | $(BIN) ; $(info $(M) Installing goimports $(GOIMPORTS_VERSION)..
2424
$(BIN):
2525
@mkdir -p $@
2626
$(BIN)/%: | $(BIN) ; $(info $(M) Building $(PACKAGE)...)
27-
$Q tmp=$$(mktemp -d); \
28-
env GO111MODULE=off GOPATH=$$tmp GOBIN=$(BIN) $(GO) get $(PACKAGE) \
29-
|| ret=$$?; \
30-
rm -rf $$tmp ; exit $$ret
27+
env GOBIN=$(BIN) $(GO) install $(PACKAGE)
3128

3229
GOLINT = $(BIN)/golint
3330
$(BIN)/golint: PACKAGE=golang.org/x/lint/golint
3431

3532
GOCOV = $(BIN)/gocov
36-
$(BIN)/gocov: PACKAGE=github.com/axw/gocov/...
33+
$(BIN)/gocov: PACKAGE=github.com/axw/gocov/gocov@v1.1.0
3734

3835
GOCOVXML = $(BIN)/gocov-xml
39-
$(BIN)/gocov-xml: PACKAGE=github.com/AlekSi/gocov-xml
36+
$(BIN)/gocov-xml: PACKAGE=github.com/AlekSi/gocov-xml@v1.1.0
4037

4138
GOJUNITREPORT = $(BIN)/go-junit-report
42-
$(BIN)/go-junit-report: PACKAGE=github.com/jstemmer/go-junit-report
39+
$(BIN)/go-junit-report: PACKAGE=github.com/jstemmer/go-junit-report/v2@v2.1.0
4340

4441
GOLANGCILINT = $(BIN)/golangci-lint
4542
$(BIN)/golangci-lint: ; $(info $(M) Installing golangci-lint...) @

0 commit comments

Comments
 (0)