diff --git a/CHANGELOG.md b/CHANGELOG.md index 248bf28d4..36a5c8785 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +* Removed `experimental` from coordination API + ## v3.108.3 * Fixed handling of zero values for DyNumber * Fixed the decimal yql slice bounds out of range diff --git a/coordination/client.go b/coordination/client.go index b0ff0c011..5de254654 100644 --- a/coordination/client.go +++ b/coordination/client.go @@ -25,8 +25,6 @@ type Client interface { // - call Close on the Session, // - close the Client which the session was created with, // - call any method of the Session until the ErrSessionClosed is returned. - // - // Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental Session(ctx context.Context, path string, opts ...options.SessionOption) (Session, error) }