Documentation, CHANGELOG: use new go.etcd.io/etcd/v3 pkg

Use the new package path in the docs and announce it in the CHANGELOG
This commit is contained in:
Brandon Philips
2020-04-28 22:02:19 +00:00
parent c9cdefaeac
commit d88d765ba4
5 changed files with 8 additions and 7 deletions

View File

@ -10,8 +10,8 @@ The etcd client provides a gRPC resolver for resolving gRPC endpoints with an et
```go
import (
"go.etcd.io/etcd/clientv3"
etcdnaming "go.etcd.io/etcd/clientv3/naming"
"go.etcd.io/etcd/v3/clientv3"
etcdnaming "go.etcd.io/etcd/v3/clientv3/naming"
"google.golang.org/grpc"
)