Skip to content

Commit

Permalink
DSET-4456: Drop support for Go 1.19 and add 1.21 (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-majlis-s1 authored Aug 23, 2023
1 parent 68a857c commit 784603b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.20
cache: true
cache-dependency-path: |
go.sum
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build:
strategy:
matrix:
go: ['1.19', '1.20']
go: ['1.20', '1.21']
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
needs: pre_job
Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.14.0

* break: drop support for Go 1.19 and add testing for Go 1.21

## 0.13.0

* fix: do not drop event when buffer is being published
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module github.com/scalyr/dataset-go

go 1.19
go 1.20

require (
github.com/cenkalti/backoff/v4 v4.2.1
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
package version

const (
Version = "0.13.0"
Version = "0.14.0"
ReleasedDate = "2023-08-23"
)
2 changes: 1 addition & 1 deletion pkg/version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ import (
)

func TestVersion(t *testing.T) {
assert.Equal(t, "0.13.0", Version)
assert.Equal(t, "0.14.0", Version)
assert.Equal(t, "2023-08-23", ReleasedDate)
}

0 comments on commit 784603b

Please sign in to comment.