diff --git a/CHANGELOG.md b/CHANGELOG.md index 5af921727..1943fca70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +## v3.99.3 * Fixed potential infinity loop for local dc detection (CWE-835) * Fixed nil pointer dereferenced in a topic listener (CWE-476) diff --git a/internal/version/version.go b/internal/version/version.go index 5aa2a0b24..8e852a754 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -3,7 +3,7 @@ package version const ( Major = "3" Minor = "99" - Patch = "2" + Patch = "3" Package = "ydb-go-sdk" )