diff --git a/readme-cn.md b/readme-cn.md index aaea2639..db30c6ff 100644 --- a/readme-cn.md +++ b/readme-cn.md @@ -87,7 +87,7 @@ go-zero 是一个集成了各种工程实践的包含 web 和 rpc 框架,有 在项目目录下通过如下命令安装: ```shell -GO111MODULE=on GOPROXY=https://goproxy.cn/,direct go get -u github.com/zeromicro/go-zero +GO111MODULE=on GOPROXY=https://goproxy.cn/,direct go get -u github.com/tal-tech/go-zero ``` ## 5. Quick Start @@ -104,10 +104,10 @@ GO111MODULE=on GOPROXY=https://goproxy.cn/,direct go get -u github.com/zeromicro ```shell # Go 1.15 及之前版本 - GO111MODULE=on GOPROXY=https://goproxy.cn/,direct go get -u github.com/zeromicro/go-zero/tools/goctl@latest + GO111MODULE=on GOPROXY=https://goproxy.cn/,direct go get -u github.com/tal-tech/go-zero/tools/goctl@latest # Go 1.16 及以后版本 - GOPROXY=https://goproxy.cn/,direct go install github.com/zeromicro/go-zero/tools/goctl@latest + GOPROXY=https://goproxy.cn/,direct go install github.com/tal-tech/go-zero/tools/goctl@latest ``` 确保 goctl 可执行 diff --git a/readme.md b/readme.md index e8f29643..5701e283 100644 --- a/readme.md +++ b/readme.md @@ -90,7 +90,7 @@ As below, go-zero protects the system with couple layers and mechanisms: Run the following command under your project: ```shell -go get -u github.com/zeromicro/go-zero +go get -u github.com/tal-tech/go-zero ``` ## 6. Quick Start @@ -107,10 +107,10 @@ go get -u github.com/zeromicro/go-zero ```shell # for Go 1.15 and earlier - GO111MODULE=on go get -u github.com/zeromicro/go-zero/tools/goctl@latest + GO111MODULE=on go get -u github.com/tal-tech/go-zero/tools/goctl@latest # for Go 1.16 and later - go install github.com/zeromicro/go-zero/tools/goctl@latest + go install github.com/tal-tech/go-zero/tools/goctl@latest ``` make sure goctl is executable. diff --git a/tools/goctl/internal/version/version.go b/tools/goctl/internal/version/version.go index f4d8cbf4..650bede3 100644 --- a/tools/goctl/internal/version/version.go +++ b/tools/goctl/internal/version/version.go @@ -6,7 +6,7 @@ import ( ) // BuildVersion is the version of goctl. -const BuildVersion = "1.2.5" +const BuildVersion = "1.3.0" var tag = map[string]int{"pre-alpha": 0, "alpha": 1, "pre-bata": 2, "beta": 3, "released": 4, "": 5}