Skip to content

Commit

Permalink
Use Go 1.19 in CI
Browse files Browse the repository at this point in the history
We generally support the last two stable versions of Go,
updating the CI to test against them.
  • Loading branch information
martin-sucha committed Sep 6, 2022
1 parent 9cf1e71 commit 53b2437
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
go: [ '1.17', '1.18' ]
go: [ '1.18', '1.19' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
Expand All @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ '1.17', '1.18' ]
go: [ '1.18', '1.19' ]
cassandra_version: [ '3.0.27', '3.11.13' ]
auth: [ "false" ]
compressor: [ "snappy" ]
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ 1.17, 1.18 ]
go: [ 1.18, 1.19 ]
cassandra_version: [ 3.11.13 ]
compressor: [ "snappy" ]
tags: [ "integration" ]
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Supported versions of Go that we test against are now Go 1.18 and Go 1.19.

### Fixed

## [1.2.1] - 2022-09-02
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ The following matrix shows the versions of Go and Cassandra that are tested with

Go/Cassandra | 2.1.x | 2.2.x | 3.x.x
-------------| -------| ------| ---------
1.17 | yes | yes | yes
1.18 | yes | yes | yes
1.19 | yes | yes | yes

Gocql has been tested in production against many different versions of Cassandra. Due to limits in our CI setup we only test against the latest 3 major releases, which coincide with the official support from the Apache project.

Expand Down

0 comments on commit 53b2437

Please sign in to comment.