[dubbo-go] branch master updated: update readme.md

2019-06-12 Thread yiji
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 8459bec  update readme.md
 new 17d73c5  Merge pull request #91 from zonghaishang/update_readme
8459bec is described below

commit 8459becda949e6ad11a79db9248b55978b608342
Author: zonghaishang 
AuthorDate: Thu Jun 13 13:32:28 2019 +0800

update readme.md
---
 README.md|   2 +-
 README_CN.md | 140 +--
 2 files changed, 71 insertions(+), 71 deletions(-)

diff --git a/README.md b/README.md
index 9af43d8..dcca56c 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ Finished List:
 - Codec: JsonRPC v2(√), Hessian v2(√)
 - Registry: ZooKeeper(√)
 - Cluster Strategy: Failover(√)
-- Load Balance: Random(√)
+- Load Balance: Random(√), RoundRobin(√), LeastActive(√)
 - Filter: Echo Health Check(√)
 
 Working List:
diff --git a/README_CN.md b/README_CN.md
index 0993828..20a9b41 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -1,70 +1,70 @@
-# Apache Dubbo-go [English](./README.md) #
-
-[![Build 
Status](https://travis-ci.org/apache/dubbo-go.svg?branch=master)](https://travis-ci.org/apache/dubbo-go)
-[![codecov](https://codecov.io/gh/apache/dubbo-go/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/dubbo-go)
-

-Apache Dubbo Go 语言实现
-
-## 证书 ##
-
-Apache License, Version 2.0
-
-## 发布日志 ##
-
-[v1.0.0 - 2019年5月29日 兼容dubbo v2.6.5 
版本](https://github.com/apache/dubbo-go/releases/tag/v1.0.0)
-
-## 工程架构 ##
-
-基于dubbo的extension模块和分层的代码设计(包括 protocol layer, registry layer, cluster layer, 
config 等等)。我们的目标是:你可以对这些分层接口进行新的实现,并通过调用 extension 模块的“ extension.SetXXX ”方法来覆盖 
dubbo-go [同 go-for-apache-dubbo ]的默认实现,以完成自己的特殊需求而无需修改源代码。同时,欢迎你为社区贡献有用的拓展实现。
-
-![框架设计](https://raw.githubusercontent.com/wiki/dubbo/dubbo-go/dubbo-go%E4%BB%A3%E7%A0%81%E5%88%86%E5%B1%82%E8%AE%BE%E8%AE%A1.png)
-
-关于详细设计请阅读 [code layered 
design](https://github.com/apache/dubbo-go/wiki/dubbo-go-V1.0-design)
-
-## 功能列表 ##
-
-实现列表:
-
-- Role: Consumer(√), Provider(√)
-- Transport: HTTP(√), TCP(√)
-- Codec: JsonRPC v2(√), Hessian v2(√)
-- Registry: ZooKeeper(√)
-- Cluster Strategy: Failover(√)
-- Load Balance: Random(√)
-- Filter: Echo Health Check(√)
-
-开发中列表:
-
-- Cluster Strategy: Failfast/Failsafe/Failback/Forking
-- Load Balance: RoundRobin/LeastActive/ConsistentHash
-- Filter: 
TokenFilter/AccessLogFilter/CountFilter/ActiveLimitFilter/ExecuteLimitFilter/GenericFilter/TpsLimitFilter
-- Registry: etcd/k8s/consul
-
-任务列表:
-
-- routing rule (dubbo v2.6.x)
-- metrics (dubbo v2.7.x) waiting dubbo's quota
-- dynamic configuration center & metadata center (dubbo v2.7.x)
-- tracing (dubbo ecosystem)
-
-你可以通过访问 [roadmap](https://github.com/apache/dubbo-go/wiki/Roadmap) 知道更多关于 
dubbo-go 的信息
-
-## 快速开始 ##
-
-这个子目录下的例子展示了如何使用 dubbo-go 。请仔细阅读 
[examples/README.md](https://github.com/apache/dubbo-go/blob/develop/examples/README.md)
 学习如何处理配置并编译程序。
-
-## 性能测试 ##
-
-性能测试项目是 
[go-for-apache-dubbo-benchmark](https://github.com/dubbogo/go-for-apache-dubbo-benchmark)
-
-关于 dubbo-go 性能测试报告,请阅读 [dubbo benchmarking 
report](https://github.com/apache/dubbo-go/wiki/pressure-test-report-for-dubbo) 
& [jsonrpc benchmarking 
report](https://github.com/apache/dubbo-go/wiki/pressure-test-report-for-jsonrpc)
-
-## [User List](https://github.com/apache/dubbo-go/issues/2)
-
-![ctrip](https://pic.c-ctrip.com/common/c_logo2013.png)
-
-## Stargazers
-
-[![Stargazers over 
time](https://starchart.cc/apache/dubbo-go.svg)](https://starchart.cc/apache/dubbo-go)
-
+# Apache Dubbo-go [English](./README.md) #
+
+[![Build 
Status](https://travis-ci.org/apache/dubbo-go.svg?branch=master)](https://travis-ci.org/apache/dubbo-go)
+[![codecov](https://codecov.io/gh/apache/dubbo-go/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/dubbo-go)
+
+---
+Apache Dubbo Go 语言实现
+
+## 证书 ##
+
+Apache License, Version 2.0
+
+## 发布日志 ##
+
+[v1.0.0 - 2019年5月29日 兼容dubbo v2.6.5 
版本](https://github.com/apache/dubbo-go/releases/tag/v1.0.0)
+
+## 工程架构 ##
+
+基于dubbo的extension模块和分层的代码设计(包括 protocol layer, registry layer, cluster layer, 
config 等等)。我们的目标是:你可以对这些分层接口进行新的实现,并通过调用 extension 模块的“ extension.SetXXX ”方法来覆盖 
dubbo-go [同 go-for-apache-dubbo ]的默认实现,以完成自己的特殊需求而无需修改源代码。同时,欢迎你为社区贡献有用的拓展实现。
+
+![框架设计](https://raw.githubusercontent.com/wiki/dubbo/dubbo-go/dubbo-go%E4%BB%A3%E7%A0%81%E5%88%86%E5%B1%82%E8%AE%BE%E8%AE%A1.png)
+
+关于详细设计请阅读 [code layered 
design](https://github.com/apache/dubbo-go/wiki/dubbo-go-V1.0-design)
+
+## 功能列表 ##
+
+实现列表:
+
+- Role: Consumer(√), Provider(√)
+- Transport: HTTP(√), TCP(√)
+- Codec: JsonRPC v2(√), Hessian v2(√)
+- Registry: ZooKeeper(√)
+- Cluster Strategy: Failover(√)
+- Load Balance: Random(√), RoundRobin(√), LeastActive(√)
+- Filter: Echo Health Check(√)
+
+开发中列表:
+
+- Cluster Strategy: Failfast/Failsafe/Failback/Forking
+- Load Balance: RoundRobin/Lea

[dubbo-go] branch master updated: Update README.md

2019-07-21 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 7f0abe3  Update README.md
7f0abe3 is described below

commit 7f0abe3c26c4c993e1abfe5ad8305cc53f4a9de6
Author: vito.he 
AuthorDate: Sun Jul 21 18:48:34 2019 +0800

Update README.md
---
 README.md | 1 -
 1 file changed, 1 deletion(-)

diff --git a/README.md b/README.md
index 245b693..97bf03d 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,6 @@ Finished List:
 - Transport: HTTP, TCP
 - Codec: JsonRPC v2, Hessian v2
 - Registry: ZooKeeper
-- Routing: Rule(dubbo v2.6.x)
 - Configure Center: Zookeeper
 - Cluster Strategy: Failover
 - Load Balance: Random, RoundRobin, LeastActive



[dubbo-go] branch master updated: Update README.md

2019-08-03 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 7c36108  Update README.md
7c36108 is described below

commit 7c36108ea930e9136604a527b06ca23f92b9a586
Author: vito.he 
AuthorDate: Sat Aug 3 23:46:58 2019 +0800

Update README.md
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index a393554..aa9a9ab 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ Working List:
 
 - Cluster Strategy: Forking
 - Load Balance: ConsistentHash
-- Filter: 
TokenFilter/AccessLogFilter/CountFilter/ActiveLimitFilter/ExecuteLimitFilter/GenericFilter/TpsLimitFilter
+- Filter: 
TokenFilter/AccessLogFilter/CountFilter/ExecuteLimitFilter/TpsLimitFilter
 - Registry: etcd/k8s/consul/nacos
 - Configure Center: apollo
 - Dynamic Configuration Center & Metadata Center (dubbo v2.7.x)



[dubbo-go] branch master updated: Update README.md

2019-08-06 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new f903962  Update README.md
f903962 is described below

commit f903962b2fb9b9ad8f4701a99ab18236d8eb55e2
Author: vito.he 
AuthorDate: Tue Aug 6 19:35:46 2019 +0800

Update README.md
---
 README.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.md b/README.md
index aa9a9ab..8bdaee4 100644
--- a/README.md
+++ b/README.md
@@ -34,6 +34,7 @@ Finished List:
 - Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)
 - Load Balance: 
Random/[RoundRobin](https://github.com/apache/dubbo-go/pull/66)/[LeastActive](https://github.com/apache/dubbo-go/pull/65)
 - Filter: Echo Health Check
+- Other feature: [generic 
invoke](https://github.com/apache/dubbo-go/pull/122)/start check/connecting 
certain provider/multi-protocols/multi-registries/multi-versions/service group
 
 Working List:
 



[dubbo-go] branch master updated: Update README.md

2019-08-09 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new ea373a7  Update README.md
ea373a7 is described below

commit ea373a78833ca703fc20abdde772cbb9e06b64fe
Author: vito.he 
AuthorDate: Fri Aug 9 19:24:33 2019 +0800

Update README.md
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index a09dfb9..4e6b5fe 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ Finished List:
 - Codec: JsonRPC v2, Hessian v2
 - Registry: ZooKeeper
 - Configure Center: Zookeeper
-- Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)
+- Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)/available/broadcast
 - Load Balance: 
Random/[RoundRobin](https://github.com/apache/dubbo-go/pull/66)/[LeastActive](https://github.com/apache/dubbo-go/pull/65)
 - Filter: Echo Health Check
 - Other feature: [generic 
invoke](https://github.com/apache/dubbo-go/pull/122)/start check/connecting 
certain provider/multi-protocols/multi-registries/multi-versions/service group



[dubbo-go] branch master updated: Update README.md

2019-08-09 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new ff8c560  Update README.md
ff8c560 is described below

commit ff8c5606068681e738638fb0ad20528985870f04
Author: vito.he 
AuthorDate: Fri Aug 9 19:24:59 2019 +0800

Update README.md
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 4e6b5fe..5f00570 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ Finished List:
 - Codec: JsonRPC v2, Hessian v2
 - Registry: ZooKeeper
 - Configure Center: Zookeeper
-- Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)/available/broadcast
+- Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)/Available/Broadcast
 - Load Balance: 
Random/[RoundRobin](https://github.com/apache/dubbo-go/pull/66)/[LeastActive](https://github.com/apache/dubbo-go/pull/65)
 - Filter: Echo Health Check
 - Other feature: [generic 
invoke](https://github.com/apache/dubbo-go/pull/122)/start check/connecting 
certain provider/multi-protocols/multi-registries/multi-versions/service group



[dubbo-go] branch master updated: Update README.md

2019-08-09 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 86687a1  Update README.md
86687a1 is described below

commit 86687a1584f3c4f2960df33c358693442d739276
Author: vito.he 
AuthorDate: Fri Aug 9 19:27:22 2019 +0800

Update README.md
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 5f00570..593be70 100644
--- a/README.md
+++ b/README.md
@@ -56,7 +56,7 @@ You can know more about dubbo-go by its 
[roadmap](https://github.com/apache/dubb
 
 ## Document
 
-Move [here](https://dubbogo.github.io/dubbo-go-website/)
+TODO
 
 ## Quick Start
 



[dubbo-go] branch master updated: Update README.md

2019-08-11 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new ae23614  Update README.md
ae23614 is described below

commit ae2361475401ee63e3d87b19cd148a8f02f02d0a
Author: vito.he 
AuthorDate: Mon Aug 12 14:13:54 2019 +0800

Update README.md
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 593be70..0d14c38 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ Finished List:
 - Role: Consumer, Provider
 - Transport: HTTP, TCP
 - Codec: JsonRPC v2, Hessian v2
-- Registry: ZooKeeper
+- Registry: ZooKeeper/etcd/nacos
 - Configure Center: Zookeeper
 - Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)/Available/Broadcast
 - Load Balance: 
Random/[RoundRobin](https://github.com/apache/dubbo-go/pull/66)/[LeastActive](https://github.com/apache/dubbo-go/pull/65)
@@ -41,7 +41,7 @@ Working List:
 - Cluster Strategy: Forking
 - Load Balance: ConsistentHash
 - Filter: 
TokenFilter/AccessLogFilter/CountFilter/ExecuteLimitFilter/TpsLimitFilter
-- Registry: etcd/k8s/consul/nacos
+- Registry: k8s/consul
 - Configure Center: apollo
 - Dynamic Configuration Center & Metadata Center (dubbo v2.7.x)
 - Metrics: Promethus(dubbo v2.7.x)



[dubbo-go] branch master updated: Update README.md

2019-08-11 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 6c8853c  Update README.md
6c8853c is described below

commit 6c8853c3836f24f9a4bd5ff356c8fc6cfba3cd42
Author: vito.he 
AuthorDate: Mon Aug 12 14:16:20 2019 +0800

Update README.md
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 0d14c38..acb16f4 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ Finished List:
 - Role: Consumer, Provider
 - Transport: HTTP, TCP
 - Codec: JsonRPC v2, Hessian v2
-- Registry: ZooKeeper/etcd/nacos
+- Registry: 
ZooKeeper/[etcd](https://github.com/apache/dubbo-go/pull/148)/[nacos](https://github.com/apache/dubbo-go/pull/151)
 - Configure Center: Zookeeper
 - Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)/Available/Broadcast
 - Load Balance: 
Random/[RoundRobin](https://github.com/apache/dubbo-go/pull/66)/[LeastActive](https://github.com/apache/dubbo-go/pull/65)



[dubbo-go] branch master updated: Update README.md

2019-08-19 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 7563d87  Update README.md
7563d87 is described below

commit 7563d875c9e0601593d19cc5fe8264510f2466f8
Author: vito.he 
AuthorDate: Mon Aug 19 21:14:23 2019 +0800

Update README.md
---
 README.md | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/README.md b/README.md
index ccc6ae5..e64b0a0 100644
--- a/README.md
+++ b/README.md
@@ -35,14 +35,13 @@ Finished List:
 - Codec: JsonRPC v2, Hessian v2
 - Registry: 
ZooKeeper/[etcd](https://github.com/apache/dubbo-go/pull/148)/[nacos](https://github.com/apache/dubbo-go/pull/151)
 - Configure Center: Zookeeper
-- Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)/Available/Broadcast
+- Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)/[Available](https://github.com/apache/dubbo-go/pull/155)/[Broadcast](https://github.com/apache/dubbo-go/pull/158)/[Forking](https://github.com/apache/dubbo-go/pull/161)
 - Load Balance: 
Random/[RoundRobin](https://github.com/apache/dubbo-go/pull/66)/[LeastActive](https://github.com/apache/dubbo-go/pull/65)
 - Filter: Echo Health Check
 - Other feature: [generic 
invoke](https://github.com/apache/dubbo-go/pull/122)/start check/connecting 
certain provider/multi-protocols/multi-registries/multi-versions/service group
 
 Working List:
 
-- Cluster Strategy: Forking
 - Load Balance: ConsistentHash
 - Filter: 
TokenFilter/AccessLogFilter/CountFilter/ExecuteLimitFilter/TpsLimitFilter
 - Registry: k8s/consul



[dubbo-go] branch master updated: Update README.md

2019-08-25 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new d72b94a  Update README.md
d72b94a is described below

commit d72b94ad40aed8c4c323ca2c086d6d293a80bb8f
Author: vito.he 
AuthorDate: Mon Aug 26 13:23:06 2019 +0800

Update README.md
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 9a3fcd6..d01c5df 100644
--- a/README.md
+++ b/README.md
@@ -33,11 +33,11 @@ Finished List:
 - Role: Consumer, Provider
 - Transport: HTTP, TCP
 - Codec: JsonRPC v2, Hessian v2
-- Registry: ZooKeeper/[etcd 
v3](https://github.com/apache/dubbo-go/pull/148)/[nacos](https://github.com/apache/dubbo-go/pull/151)/[consule](https://github.com/apache/dubbo-go/pull/121)
+- Registry: ZooKeeper/[etcd 
v3](https://github.com/apache/dubbo-go/pull/148)/[nacos](https://github.com/apache/dubbo-go/pull/151)/[consul](https://github.com/apache/dubbo-go/pull/121)
 - Configure Center: Zookeeper
 - Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)/[Available](https://github.com/apache/dubbo-go/pull/155)/[Broadcast](https://github.com/apache/dubbo-go/pull/158)/[Forking](https://github.com/apache/dubbo-go/pull/161)
 - Load Balance: 
Random/[RoundRobin](https://github.com/apache/dubbo-go/pull/66)/[LeastActive](https://github.com/apache/dubbo-go/pull/65)
-- Filter: Echo Health Check
+- Filter: Echo Health Check/[Circuit break and service 
downgrade](https://github.com/apache/dubbo-go/pull/133)
 - Other feature: [generic 
invoke](https://github.com/apache/dubbo-go/pull/122)/start check/connecting 
certain provider/multi-protocols/multi-registries/multi-versions/service group
 
 Working List:



[dubbo-go] branch master updated: Update README.md

2019-09-01 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 395e227  Update README.md
395e227 is described below

commit 395e227bcad2e46ca509cce0c17d91c1c8eb4d82
Author: vito.he 
AuthorDate: Mon Sep 2 09:57:37 2019 +0800

Update README.md
---
 README.md | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/README.md b/README.md
index d01c5df..36e0ad7 100644
--- a/README.md
+++ b/README.md
@@ -6,9 +6,6 @@
 ---
 Apache Dubbo Go Implementation.
 
-![Apache Dubbo-go](./dubbogo.png "Apache Dubbo-go")
-
-Apache/Dubbo-go image, licensed under [Creative Commons 3.0 Attributions 
license](https://creativecommons.org/licenses/by/3.0/).
 
 ## License
 



[dubbo-go] branch master updated: Update README.md

2019-09-19 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 5853459  Update README.md
5853459 is described below

commit 58534597e6ca791b2b2cdd5ed0d5106e3efcbbef
Author: vito.he 
AuthorDate: Fri Sep 20 14:36:41 2019 +0800

Update README.md
---
 README.md | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index c5ad2f3..4392e06 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ Finished List:
 - Transport: HTTP, TCP
 - Codec: JsonRPC v2, Hessian v2
 - Registry: ZooKeeper/[etcd 
v3](https://github.com/apache/dubbo-go/pull/148)/[nacos](https://github.com/apache/dubbo-go/pull/151)/[consul](https://github.com/apache/dubbo-go/pull/121)
-- Configure Center: Zookeeper
+- Dynamic Configure Center & Service Management Configurator: Zookeeper
 - Cluster Strategy: 
Failover/[Failfast](https://github.com/apache/dubbo-go/pull/140)/[Failsafe/Failback](https://github.com/apache/dubbo-go/pull/136)/[Available](https://github.com/apache/dubbo-go/pull/155)/[Broadcast](https://github.com/apache/dubbo-go/pull/158)/[Forking](https://github.com/apache/dubbo-go/pull/161)
 - Load Balance: 
Random/[RoundRobin](https://github.com/apache/dubbo-go/pull/66)/[LeastActive](https://github.com/apache/dubbo-go/pull/65)
 - Filter: Echo Health Check/[Circuit break and service 
downgrade](https://github.com/apache/dubbo-go/pull/133)/[TokenFilter](https://github.com/apache/dubbo-go/pull/202)
@@ -43,7 +43,7 @@ Working List:
 - Filter: AccessLogFilter/CountFilter/ExecuteLimitFilter/TpsLimitFilter
 - Registry: k8s
 - Configure Center: apollo
-- Dynamic Configuration Center & Metadata Center (dubbo v2.7.x)
+- Metadata Center (dubbo v2.7.x)
 - Metrics: Promethus(dubbo v2.7.x)
 
 Todo List:
@@ -65,6 +65,8 @@ The subdirectory examples shows how to use dubbo-go. Please 
read the [examples/R
 ## Running unit tests
 
 ```bash
+sh ./before_ut.sh
+
 go test ./...
 
 # coverage



[dubbo-go] branch master updated: Update README.md

2019-12-18 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 222a036  Update README.md
222a036 is described below

commit 222a036794f1c41a0aa22a0f049263ab7a52b473
Author: vito.he 
AuthorDate: Thu Dec 19 10:00:53 2019 +0800

Update README.md
---
 README.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/README.md b/README.md
index 6ff358d..e10953b 100644
--- a/README.md
+++ b/README.md
@@ -53,6 +53,8 @@ Todo List:
 
 You can know more about dubbo-go by its 
[roadmap](https://github.com/apache/dubbo-go/wiki/Roadmap).
 
+![feature](https://raw.githubusercontent.com/wiki/apache/dubbo-go/arch.png)
+
 ## Document
 
 TODO



[dubbo-go] branch master updated: Update README.md

2019-12-18 Thread xinminghe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 81fb648  Update README.md
81fb648 is described below

commit 81fb648c0d0f602b49069b751608058a641e5822
Author: vito.he 
AuthorDate: Thu Dec 19 10:07:53 2019 +0800

Update README.md
---
 README.md | 4 
 1 file changed, 4 insertions(+)

diff --git a/README.md b/README.md
index e10953b..fb507d3 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,10 @@ Apache License, Version 2.0
 
 [v1.0.0 - May 29, 2019 compatible with dubbo 
v2.6.5](https://github.com/apache/dubbo-go/releases/tag/v1.0.0)
 
+[v1.1.0 - Sep 7, 2019 the first release after transferred to 
apache](https://github.com/apache/dubbo-go/releases/tag/v1.1.0)
+
+[v1.2.0 - Nov 15, 2019](https://github.com/apache/dubbo-go/releases/tag/v1.2.0)
+
 ## Project Architecture ##
 
 Both extension module and layered project architecture is according to Apache 
Dubbo (including protocol layer, registry layer, cluster layer, config layer 
and so on), the advantage of this arch is as following: you can implement these 
layered interfaces in your own way, override the default implementation of 
dubbo-go by calling 'extension.SetXXX' of extension, complete your special 
needs without modifying the source code. At the same time, you are welcome to 
contribute implementation of  [...]