This is an automated email from the ASF dual-hosted git repository.

alexstocks pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git


The following commit(s) were added to refs/heads/3.0 by this push:
     new d385de5  fix: update 3.0 version and changelog (#1199)
d385de5 is described below

commit d385de50d0a6a3605ecadbf500d7c78394f95735
Author: Laurence <[email protected]>
AuthorDate: Sat May 15 10:00:35 2021 +0800

    fix: update 3.0 version and changelog (#1199)
    
    * fix: update 3.0 version and changelog
    
    * fix: update readme
    
    * Update CHANGE.md
    
    Co-authored-by: Xin.Zh <[email protected]>
---
 CHANGE.md                                | 31 +++++++++++++++++++++++++++++++
 README.md                                | 11 ++++-------
 README_CN.md                             | 11 ++++-------
 common/constant/version.go               |  4 ++--
 protocol/dubbo3/protoc-gen-dubbo3/go.mod |  2 +-
 protocol/dubbo3/protoc-gen-dubbo3/go.sum |  1 +
 test/integrate/dubbo/go-client/go.sum    |  1 +
 test/integrate/dubbo/go-server/go.sum    |  1 +
 tools/cli/example/server/go.sum          |  2 +-
 9 files changed, 46 insertions(+), 18 deletions(-)

diff --git a/CHANGE.md b/CHANGE.md
index a983451..b60ab2d 100644
--- a/CHANGE.md
+++ b/CHANGE.md
@@ -1,5 +1,36 @@
 # Release Notes
 ---
+
+## 3.0.0
+
+### New Features
+- [Add triple protocol](https://github.com/apache/dubbo-go/pull/1071)
+- [Add dubbo3 router](https://github.com/apache/dubbo-go/pull/1187)
+- [Add app-level remote service 
discovery](https://github.com/apache/dubbo-go/pull/1161)
+- [Add default config](https://github.com/apache/dubbo-go/pull/1073)
+- [Add pass through proxy 
factory](https://github.com/apache/dubbo-go/pull/1081)
+
+### Enhancement
+- [Replace default config string with const 
value](https://github.com/apache/dubbo-go/pull/1182)
+- [Add retry times in zookeeper 
starting](https://github.com/apache/dubbo-go/pull/1179)
+- [Client pool enhance](https://github.com/apache/dubbo-go/pull/1119)
+- [Impl the way of load configure 
file](https://github.com/apache/dubbo-go/pull/1099)
+
+### Bugfixes
+- [Fix: get failback error](https://github.com/apache/dubbo-go/pull/1177)
+- [Fix: delete a service provider when using k8s 
hpa](https://github.com/apache/dubbo-go/pull/1157)
+- [Fix: fix reExporter bug when config-center {applicationName}.configurator 
data change](https://github.com/apache/dubbo-go/pull/1144)
+- [Fix: stop the provider app panic 
error](https://github.com/apache/dubbo-go/pull/1129)
+
+### Dependencies
+- [bump github.com/RoaringBitmap/roaring from 0.6.0 to 
0.6.1](https://github.com/apache/dubbo-go/pull/1195)
+- [bump github.com/RoaringBitmap/roaring from 0.5.5 to 
0.6.0](https://github.com/apache/dubbo-go/pull/1175)
+- [bump github.com/RoaringBitmap/roaring from 0.5.5 to 
0.6.0](https://github.com/apache/dubbo-go/pull/1163)
+- [Bump github.com/magiconair/properties from 1.8.4 to 
1.8.5](https://github.com/apache/dubbo-go/pull/1115)
+
+Milestone:
+- 
[https://github.com/apache/dubbo-go/milestone/9](https://github.com/apache/dubbo-go/milestone/9?closed=1)
+
 ## 1.5.6
 
 ### New Features
diff --git a/README.md b/README.md
index 1ca5339..6acb806 100644
--- a/README.md
+++ b/README.md
@@ -65,17 +65,17 @@ Finished List:
     * JsonRPC V2
     * Hessian V2
     * [json for grpc](https://github.com/apache/dubbo-go/pull/582)
+    * protobuf
 
 - Protocol
     * Dubbo
+    * [Triple](https://github.com/dubbogo/triple)
     * Jsonrpc2.0
     * [gRPC](https://github.com/apache/dubbo-go/pull/311)
     * [RESTful](https://github.com/apache/dubbo-go/pull/352)
 
 - Router
-    * [Condition router](https://github.com/apache/dubbo-go/pull/294)
-    * [Health check router](https://github.com/apache/dubbo-go/pull/389)
-    * [Dynamic_tag_router](https://github.com/apache/dubbo-go/pull/703)
+    * [Dubbo3 router](https://github.com/apache/dubbo-go/pull/1187)
 
 - Registry
     * ZooKeeper
@@ -134,10 +134,7 @@ Finished List:
     * [Consul](https://github.com/apache/dubbo-go/pull/633)
 
 - Service discovery
-    * 
[Nacos](https://github.com/apache/dubbo-go/blob/9a5990d9a9c3d5e6633c0d7d926c156416bcb931/registry/nacos/service_discovery.go)
-    * 
[Zookeeper](https://github.com/apache/dubbo-go/blob/9a5990d9a9c3d5e6633c0d7d926c156416bcb931/registry/zookeeper/service_discovery.go)
-    * 
[Etcd](https://github.com/apache/dubbo-go/blob/9a5990d9a9c3d5e6633c0d7d926c156416bcb931/registry/etcdv3/service_discovery.go)
-    * [File](https://github.com/apache/dubbo-go/pull/732)
+    * [Zookeeper](https://github.com/apache/dubbo-go/pull/1161)
     
 - Tool
     * [Dubbo-go-cli](https://github.com/apache/dubbo-go/pull/818)
diff --git a/README_CN.md b/README_CN.md
index 4052c19..0a5b208 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -64,17 +64,17 @@ Apache License, Version 2.0
     * JsonRPC V2
     * Hessian V2
     * [json for grpc](https://github.com/apache/dubbo-go/pull/582)
+    * protobuf
 
 - 协议
     * Dubbo
+    * [Triple](https://github.com/dubbogo/triple)
     * Jsonrpc2.0
     * [gRPC](https://github.com/apache/dubbo-go/pull/311)
     * [RESTful](https://github.com/apache/dubbo-go/pull/352)
 
 - 路由器
-    * [Condition router](https://github.com/apache/dubbo-go/pull/294)
-    * [Health check router](https://github.com/apache/dubbo-go/pull/389)
-    * [Dynamic_tag_router](https://github.com/apache/dubbo-go/pull/703)
+    * [Dubbo3统一路由规则](https://github.com/apache/dubbo-go/pull/1187)
 
 - 注册中心
     * ZooKeeper
@@ -133,10 +133,7 @@ Apache License, Version 2.0
     * [Consul](https://github.com/apache/dubbo-go/pull/633)
 
 - 服务发现
-    * 
[Nacos](https://github.com/apache/dubbo-go/blob/9a5990d9a9c3d5e6633c0d7d926c156416bcb931/registry/nacos/service_discovery.go)
-    * 
[Zookeeper](https://github.com/apache/dubbo-go/blob/9a5990d9a9c3d5e6633c0d7d926c156416bcb931/registry/zookeeper/service_discovery.go)
-    * 
[Etcd](https://github.com/apache/dubbo-go/blob/9a5990d9a9c3d5e6633c0d7d926c156416bcb931/registry/etcdv3/service_discovery.go)
-    * [File](https://github.com/apache/dubbo-go/pull/732)
+    * [Zookeeper](https://github.com/apache/dubbo-go/pull/1161)
     
 - 工具箱
     * [Dubbo-go-cli](https://github.com/apache/dubbo-go/pull/818)
diff --git a/common/constant/version.go b/common/constant/version.go
index d24a9fd..99d04b2 100644
--- a/common/constant/version.go
+++ b/common/constant/version.go
@@ -19,9 +19,9 @@ package constant
 
 const (
        // Version apache/dubbo-go version
-       Version = "1.5.6"
+       Version = "3.0.0"
        // Name module name
        Name = "dubbogo"
        // Date release date
-       DATE = "2021/03/22"
+       DATE = "2021/05/14"
 )
diff --git a/protocol/dubbo3/protoc-gen-dubbo3/go.mod 
b/protocol/dubbo3/protoc-gen-dubbo3/go.mod
index 7bc17ef..9e4d06b 100644
--- a/protocol/dubbo3/protoc-gen-dubbo3/go.mod
+++ b/protocol/dubbo3/protoc-gen-dubbo3/go.mod
@@ -9,4 +9,4 @@ require (
        google.golang.org/grpc v1.36.0
 )
 
-replace dubbo.apache.org/dubbo-go/v3 => ../../../../dubbo-go
\ No newline at end of file
+replace dubbo.apache.org/dubbo-go/v3 => ../../../../dubbo-go
diff --git a/protocol/dubbo3/protoc-gen-dubbo3/go.sum 
b/protocol/dubbo3/protoc-gen-dubbo3/go.sum
index a9e3932..e917ce1 100644
--- a/protocol/dubbo3/protoc-gen-dubbo3/go.sum
+++ b/protocol/dubbo3/protoc-gen-dubbo3/go.sum
@@ -47,6 +47,7 @@ github.com/PuerkitoBio/purell v1.0.0/go.mod 
h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbt
 github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod 
h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE=
 github.com/RoaringBitmap/roaring v0.6.0 
h1:tZcn2nJpUrZf+xQY8x+9QY7BxSETMjkdNG4Ts5zahyU=
 github.com/RoaringBitmap/roaring v0.6.0/go.mod 
h1:WZ83fjBF/7uBHi6QoFyfGL4+xuV4Qn+xFkm4+vSzrhE=
+github.com/RoaringBitmap/roaring v0.6.1/go.mod 
h1:WZ83fjBF/7uBHi6QoFyfGL4+xuV4Qn+xFkm4+vSzrhE=
 github.com/Shopify/sarama v1.19.0/go.mod 
h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo=
 github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod 
h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI=
 github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod 
h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
diff --git a/test/integrate/dubbo/go-client/go.sum 
b/test/integrate/dubbo/go-client/go.sum
index 44cd8a0..4f3a5f5 100644
--- a/test/integrate/dubbo/go-client/go.sum
+++ b/test/integrate/dubbo/go-client/go.sum
@@ -47,6 +47,7 @@ github.com/PuerkitoBio/purell v1.0.0/go.mod 
h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbt
 github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod 
h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE=
 github.com/RoaringBitmap/roaring v0.6.0 
h1:tZcn2nJpUrZf+xQY8x+9QY7BxSETMjkdNG4Ts5zahyU=
 github.com/RoaringBitmap/roaring v0.6.0/go.mod 
h1:WZ83fjBF/7uBHi6QoFyfGL4+xuV4Qn+xFkm4+vSzrhE=
+github.com/RoaringBitmap/roaring v0.6.1/go.mod 
h1:WZ83fjBF/7uBHi6QoFyfGL4+xuV4Qn+xFkm4+vSzrhE=
 github.com/Shopify/sarama v1.19.0/go.mod 
h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo=
 github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod 
h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI=
 github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod 
h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
diff --git a/test/integrate/dubbo/go-server/go.sum 
b/test/integrate/dubbo/go-server/go.sum
index d274a6d..e1e875a 100644
--- a/test/integrate/dubbo/go-server/go.sum
+++ b/test/integrate/dubbo/go-server/go.sum
@@ -47,6 +47,7 @@ github.com/PuerkitoBio/purell v1.0.0/go.mod 
h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbt
 github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod 
h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE=
 github.com/RoaringBitmap/roaring v0.6.0 
h1:tZcn2nJpUrZf+xQY8x+9QY7BxSETMjkdNG4Ts5zahyU=
 github.com/RoaringBitmap/roaring v0.6.0/go.mod 
h1:WZ83fjBF/7uBHi6QoFyfGL4+xuV4Qn+xFkm4+vSzrhE=
+github.com/RoaringBitmap/roaring v0.6.1/go.mod 
h1:WZ83fjBF/7uBHi6QoFyfGL4+xuV4Qn+xFkm4+vSzrhE=
 github.com/Shopify/sarama v1.19.0/go.mod 
h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo=
 github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod 
h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI=
 github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod 
h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
diff --git a/tools/cli/example/server/go.sum b/tools/cli/example/server/go.sum
index f3ffca1..2c53d00 100644
--- a/tools/cli/example/server/go.sum
+++ b/tools/cli/example/server/go.sum
@@ -59,7 +59,7 @@ github.com/NYTimes/gziphandler v1.1.1 
h1:ZUDjpQae29j0ryrS0u/B8HZfJBtBQHjqw2rQ2cq
 github.com/NYTimes/gziphandler v1.1.1/go.mod 
h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c=
 github.com/OneOfOne/xxhash v1.2.2/go.mod 
h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
 github.com/PuerkitoBio/purell v1.0.0/go.mod 
h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0=
-github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod 
h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE=
+github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod 
h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE
 github.com/RoaringBitmap/roaring v0.6.1 
h1:O36Tdaj1Fi/zyr25shTHwlQPGdq53+u4WkM08AOEjiE=
 github.com/RoaringBitmap/roaring v0.6.1/go.mod 
h1:WZ83fjBF/7uBHi6QoFyfGL4+xuV4Qn+xFkm4+vSzrhE=
 github.com/Shopify/sarama v1.19.0/go.mod 
h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo=

Reply via email to