Skip to content

Commit

Permalink
v1.12.9
Browse files Browse the repository at this point in the history
  • Loading branch information
stfnmllr committed Jan 7, 2025
1 parent dc2ee7b commit 39c89e2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Release Notes

### Minor revisions

#### v1.12.9
- fixed linter issues

#### v1.12.6 - v1.12.8
- updated dependencies

Expand Down
2 changes: 1 addition & 1 deletion cmd/bulkbench/benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func Benchmark(b *testing.B) {
var avgDuration, maxDuration time.Duration
var minDuration time.Duration = 1<<63 - 1

for i := 0; i < b.N; i++ {
for i := range b.N {
tr := ts.execute(sequential, batchCount, batchSize, drop)
if tr.Err != nil {
b.Fatal(tr.Err)
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.12.8"
const DriverVersion = "1.12.9"

// DriverName is the driver name to use with sql.Open for hdb databases.
const DriverName = "hdb"
Expand Down
2 changes: 1 addition & 1 deletion driver/ping_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func benchmarkPing(b *testing.B) {
}

func benchmarkPingSeq(b *testing.B) {
for i := 0; i < b.N; i++ {
for range b.N {
benchmarkPing(b)
}
}
Expand Down
2 changes: 1 addition & 1 deletion prometheus/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.23.4
// replace github.com/SAP/go-hdb => ..

require (
github.com/SAP/go-hdb v1.12.8
github.com/SAP/go-hdb v1.12.9
github.com/prometheus/client_golang v1.20.5
)

Expand Down

0 comments on commit 39c89e2

Please sign in to comment.