Skip to content

Commit

Permalink
v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stfnmllr committed Sep 8, 2023
1 parent e29656b commit c6ec215
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ all:
@echo execute tests on latest go version
go test ./...
@echo execute tests on older supported go versions
go1.20.7 test ./...
go1.20.8 test ./...
#see fsfe reuse tool (https://git.fsfe.org/reuse/tool)
@echo "reuse (license) check"
pipx run reuse lint
Expand All @@ -32,5 +32,5 @@ tools:

#install additional go versions
go:
go install golang.org/dl/go1.20.7@latest
go1.20.7 download
go install golang.org/dl/go1.20.8@latest
go1.20.8 download
5 changes: 5 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Release Notes

## v1.5.0

### Minor revisions

#### v1.5.1
- updated dependencies

### New features

- Added support of tenant database connection via tenant database name:
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.5.0"
const DriverVersion = "1.5.1"

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

0 comments on commit c6ec215

Please sign in to comment.