diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d9e03529..d72a5ef80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +## v3.80.8 * Added `ydb.WithLazyTx(bool)` option for create lazy transactions on `query.Session.Begin` call * Added initial experimental topic and cdc-helpers, see examples in [tests/integration/topic_helpers_test.go](https://github.com/ydb-platform/ydb-go-sdk/blob/master/tests/integration/topic_helpers_test.go) * Added experimental `sugar.UnmarshalRows` for user unmarshaller structs in own code in go 1.23, change example for use the iterator. diff --git a/internal/version/version.go b/internal/version/version.go index 0909ae249..25c0eb26f 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -3,7 +3,7 @@ package version const ( Major = "3" Minor = "80" - Patch = "7" + Patch = "8" Package = "ydb-go-sdk" )