You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2019/08/14 09:15:54 UTC

[dubbo-go] branch master updated: Fix: change package name in version.go

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

alexstocks 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 9ce4a84  Fix: change package name in version.go
9ce4a84 is described below

commit 9ce4a84fe4a5e5ef3f840ea7c8837d4383104f1a
Author: AlexStocks <al...@foxmail.com>
AuthorDate: Wed Aug 14 17:15:42 2019 +0800

    Fix: change package name in version.go
---
 common/constant/version.go | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/common/constant/version.go b/common/constant/version.go
index 05bc18e..733050a 100644
--- a/common/constant/version.go
+++ b/common/constant/version.go
@@ -15,10 +15,10 @@
  * limitations under the License.
  */
 
- package version
+package constant
 
- const (
-	Version = "2.6.0"
-	Name    = "dubbogo"
-	DATE    = "2019/05/06"
+const (
+    Version = "2.6.0"
+    Name    = "dubbogo"
+    DATE    = "2019/05/06"
 )