Skip to content

Commit d20e722

Browse files
gliptakMrAlias
andauthored
CI builds validate against last two versions of Go, dropping 1.14 and adding 1.16 (#1865)
Signed-off-by: Gábor Lipták <[email protected]> Co-authored-by: Tyler Yahn <[email protected]>
1 parent cbcd4b1 commit d20e722

File tree

29 files changed

+34
-33
lines changed

29 files changed

+34
-33
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A clear and concise description of what the bug is.
1515

1616
- OS: [e.g. iOS]
1717
- Architecture: [e.g. x86, i386]
18-
- Go Version: [e.g. 1.14]
18+
- Go Version: [e.g. 1.15]
1919
- opentelemetry-go version: [e.g. v0.14.0, 3c7face]
2020

2121
### Steps To Reproduce

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
# Path to where test results will be saved.
99
TEST_RESULTS: /tmp/test-results
1010
# Default minimum version of Go to support.
11-
DEFAULT_GO_VERSION: 1.14
11+
DEFAULT_GO_VERSION: 1.15
1212
jobs:
1313
lint:
1414
runs-on: ubuntu-latest
@@ -109,7 +109,7 @@ jobs:
109109
compatibility-test:
110110
strategy:
111111
matrix:
112-
go-version: [1.15, 1.14]
112+
go-version: [1.16, 1.15]
113113
os: [ubuntu-latest, macos-latest, windows-latest]
114114
# GitHub Actions does not support arm* architectures on default
115115
# runners. It is possible to acomplish this with a self-hosted runner

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
ref: ${{ github.head_ref }}
1414
- uses: actions/setup-go@v2
1515
with:
16-
go-version: '^1.14.0'
16+
go-version: '^1.15.0'
1717
- uses: evantorrie/mott-the-tidier@v1-beta
1818
id: modtidy
1919
with:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
3131
`NewSplitDriver` now automatically implements an internal `noopDriver` for `SplitConfig` fields that are not initialized. (#1798)
3232
- `resource.New()` now creates a Resource without builtin detectors. Previous behavior is now achieved by using `WithBuiltinDetectors` Option. (#1810)
3333
- Move the `Event` type from the `go.opentelemetry.io/otel` package to the `go.opentelemetry.io/otel/sdk/trace` package. (#1846)
34+
- CI builds validate against last two versions of Go, dropping 1.14 and adding 1.16. (#1865)
3435
- BatchSpanProcessor now report export failures when calling `ForceFlush()` method. (#1860)
3536
- `Set.Encoded(Encoder)` no longer caches the result of an encoding. (#1855)
3637
- Renamed `CloudZoneKey` to `CloudAvailabilityZoneKey` in Resource semantic conventions according to spec. (#1871)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ This project is tested on the following systems.
4444

4545
| OS | Go Version | Architecture |
4646
| ------- | ---------- | ------------ |
47+
| Ubuntu | 1.16 | amd64 |
4748
| Ubuntu | 1.15 | amd64 |
48-
| Ubuntu | 1.14 | amd64 |
49+
| Ubuntu | 1.16 | 386 |
4950
| Ubuntu | 1.15 | 386 |
50-
| Ubuntu | 1.14 | 386 |
51+
| MacOS | 1.16 | amd64 |
5152
| MacOS | 1.15 | amd64 |
52-
| MacOS | 1.14 | amd64 |
53+
| Windows | 1.16 | amd64 |
5354
| Windows | 1.15 | amd64 |
54-
| Windows | 1.14 | amd64 |
55+
| Windows | 1.16 | 386 |
5556
| Windows | 1.15 | 386 |
56-
| Windows | 1.14 | 386 |
5757

5858
While this project should work for other systems, no compatibility guarantees
5959
are made for those systems currently.

bridge/opencensus/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/otel/bridge/opencensus
22

3-
go 1.14
3+
go 1.15
44

55
require (
66
go.opencensus.io v0.22.6-0.20201102222123-380f4078db9f

bridge/opentracing/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/otel/bridge/opentracing
22

3-
go 1.14
3+
go 1.15
44

55
replace go.opentelemetry.io/otel => ../..
66

example/jaeger/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/otel/example/jaeger
22

3-
go 1.14
3+
go 1.15
44

55
replace (
66
go.opentelemetry.io/otel => ../..

example/namedtracer/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/otel/example/namedtracer
22

3-
go 1.14
3+
go 1.15
44

55
replace (
66
go.opentelemetry.io/otel => ../..

example/opencensus/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/otel/example/opencensus
22

3-
go 1.14
3+
go 1.15
44

55
replace (
66
go.opentelemetry.io/otel => ../..

0 commit comments

Comments
 (0)