Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Jun 18, 2024
1 parent 8d33585 commit 872e051
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
strategy:
matrix:
go: ["1.21", "1.22"]
db: ["7.1.25", "8.24.0"]
db: ["7.1.26", "8.27.0"]
env:
DEFAULT_GO: "1.22"
DEFAULT_DB: "8.24.0"
DEFAULT_DB: "8.27.0"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-go-${{ matrix.go }}-db-${{ matrix.db }}
cancel-in-progress: true
Expand Down
5 changes: 3 additions & 2 deletions .project-keeper.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
sources:
- type: golang
path: go.mod
version: 1.0.7
version: 1.0.8
excludes:
- "E-PK-CORE-26: 'release_config.yml' exists but must not exist. Reason: Release-droid configuration is replaced by release.yml"
# Releases are done with Release Droid because PK does not yet support release process for Go projects.
- "E-PK-CORE-26: 'release_config.yml' exists but must not exist. Reason: Release-droid configuration is replaced by release.yml"
6 changes: 3 additions & 3 deletions dependencies.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions doc/changes/changelog.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions doc/changes/changes_1.0.8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Exasol Driver go 1.0.8, released 2024-??-??

Code name: Fix inserting double values

## Summary

This release fixes an issue inserting double values with a prepared statement.

## Bugfixes

* #108: Fixed inserting double values with a prepared statement

## Dependency Updates

### Compile Dependency Updates

* Updated `github.com/gorilla/websocket:v1.5.1` to `v1.5.3`
* Updated `github.com/exasol/exasol-test-setup-abstraction-server/go-client:v0.3.6` to `v0.3.9`
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ go 1.21

require (
github.com/exasol/error-reporting-go v0.2.0
github.com/exasol/exasol-test-setup-abstraction-server/go-client v0.3.6
github.com/gorilla/websocket v1.5.1
github.com/exasol/exasol-test-setup-abstraction-server/go-client v0.3.9
github.com/gorilla/websocket v1.5.3
github.com/stretchr/testify v1.9.0
go.uber.org/goleak v1.3.0
golang.org/x/sync v0.7.0
Expand Down
4 changes: 4 additions & 0 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const DriverVersion = "v1.0.7"
const DriverVersion = "v1.0.8"
2 changes: 1 addition & 1 deletion pkg/integrationTesting/dbTestSetup.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/stretchr/testify/suite"
)

const defaultExasolDbVersion = "8.24.0"
const defaultExasolDbVersion = "8.27.0"

type DbTestSetup struct {
suite *suite.Suite
Expand Down

0 comments on commit 872e051

Please sign in to comment.