diff --git a/CHANGELOG.md b/CHANGELOG.md index 02f6b54..3bbc2d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ -## Unreleased +## v2.0.0 + +We are excited to announce the release of version v2! +This major update was necessary due to the initial design of interfaces that were either incorrect or redundant. +In addition, we have fully adapted to work with Tarantool 3, +eliminating the dependency on UUID-based replica sets and instances. +While you can still use these elements for supplementary information, they are no longer mandatory. +The update also includes changes to several previously public methods, +which were not intended to be exposed in the original vshard implementation. +We would like to express our gratitude to everyone who shared their migration issues with us, +as your feedback was invaluable in shaping the current state of the interfaces. FEATURES: diff --git a/go.mod b/go.mod index 9a13892..8ccb34a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/tarantool/go-vshard-router +module github.com/tarantool/go-vshard-router/v2 go 1.22 @@ -12,7 +12,7 @@ require ( go.etcd.io/etcd/client/v2 v2.305.17 go.etcd.io/etcd/client/v3 v3.5.17 go.etcd.io/etcd/server/v3 v3.5.17 - golang.org/x/sync v0.6.0 + golang.org/x/sync v0.10.0 ) require ( diff --git a/go.sum b/go.sum index aa24e4a..0e6dfea 100644 --- a/go.sum +++ b/go.sum @@ -470,6 +470,8 @@ golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= +golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=