Skip to content

Commit

Permalink
v1.8.25
Browse files Browse the repository at this point in the history
  • Loading branch information
stfnmllr committed May 8, 2024
1 parent 55526fa commit c8a6620
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
matrix:
goos: [linux]
goarch: [amd64, arm, arm64, s390x]
go: ['1.22.2', '1.21.9']
go: ['1.22.3', '1.21.10']
fail-fast: false

name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
go: ['1.22.2', '1.21.9']
go: ['1.22.3', '1.21.10']
fail-fast: false

name: Go ${{ matrix.go }} macOS
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
go: ['1.22.2', '1.21.9']
go: ['1.22.3', '1.21.10']
fail-fast: false

name: Go ${{ matrix.go }} Windows
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ all:
@echo execute tests on latest go version
go test ./...
@echo execute tests on older supported go versions
GOTOOLCHAIN=go1.21.9 go1.21.9 test ./...
GOTOOLCHAIN=go1.21.10 go1.21.10 test ./...
@echo execute tests on future supported go versions
#see fsfe reuse tool (https://git.fsfe.org/reuse/tool)
@echo "reuse (license) check"
Expand Down Expand Up @@ -40,5 +40,5 @@ tools:

#install additional go versions
go:
go install golang.org/dl/go1.21.9@latest
go1.21.9 download
go install golang.org/dl/go1.21.10@latest
go1.21.10 download
2 changes: 1 addition & 1 deletion RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Release Notes

### Minor revisions

#### v1.8.22 - v1.8.24
#### v1.8.22 - v1.8.25
- updated dependencies
- source code cleanups

Expand Down
2 changes: 1 addition & 1 deletion driver/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

// DriverVersion is the version number of the hdb driver.
const DriverVersion = "1.8.24"
const DriverVersion = "1.8.25"

// DriverName is the driver name to use with sql.Open for hdb databases.
const DriverName = "hdb"
Expand Down

0 comments on commit c8a6620

Please sign in to comment.