Skip to content

Commit

Permalink
Add support for Go 1.23 (#361)
Browse files Browse the repository at this point in the history
XSAM authored Sep 15, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 80111f6 commit c5c15c8
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -109,7 +109,7 @@ jobs:
compatibility-test:
strategy:
matrix:
go-version: ["1.22"]
go-version: ["1.23", "1.22"]
os: [ubuntu-latest, macos-latest, windows-latest]
# GitHub Actions does not support arm* architectures on default
# runners. It is possible to acomplish this with a self-hosted runner
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -10,6 +10,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

The minimum supported Go version is `1.22`.

### Added

- Go 1.23 to supported versions. (#361)

### Changed

- The `Open` method uses the `dataSourceName` when calling `sql.Open`. (#359)
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -81,10 +81,15 @@ This project is tested on the following systems.

| OS | Go Version | Architecture |
| ------- | ---------- | ------------ |
| Ubuntu | 1.23 | amd64 |
| Ubuntu | 1.22 | amd64 |
| Ubuntu | 1.23 | 386 |
| Ubuntu | 1.22 | 386 |
| MacOS | 1.23 | amd64 |
| MacOS | 1.22 | amd64 |
| Windows | 1.23 | amd64 |
| Windows | 1.22 | amd64 |
| Windows | 1.23 | 386 |
| Windows | 1.22 | 386 |

While this project should work for other systems, no compatibility guarantees

0 comments on commit c5c15c8

Please sign in to comment.