Skip to content

Commit 5ed1c71

Browse files
author
Vic Shóstak
committed
Bump v1.2.1
1 parent 4c8017d commit 5ed1c71

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</h1>
55
<p align="center">Create a new production-ready project with backend (Golang), frontend (JavaScript, TypeScript)<br/>and deploy automation (Ansible, Docker) by running one CLI command!<br/><br/>Focus on writing code! The CLI will take care of the rest.</p>
66

7-
<p align="center"><a href="https://github.com/create-go-app/cli/releases" target="_blank"><img src="https://img.shields.io/badge/version-v1.2.0-blue?style=for-the-badge&logo=none" alt="cli version" /></a>&nbsp;<a href="https://pkg.go.dev/github.com/create-go-app/cli/pkg/cgapp?tab=doc" target="_blank"><img src="https://img.shields.io/badge/Go-1.11+-00ADD8?style=for-the-badge&logo=go" alt="go version" /></a>&nbsp;<a href="https://gocover.io/github.com/create-go-app/cli/pkg/cgapp" target="_blank"><img src="https://img.shields.io/badge/Go_Cover-98%25-success?style=for-the-badge&logo=none" alt="go cover" /></a>&nbsp;<a href="https://goreportcard.com/report/github.com/create-go-app/cli" target="_blank"><img src="https://img.shields.io/badge/Go_report-A+-success?style=for-the-badge&logo=none" alt="go report" /></a>&nbsp;<img src="https://img.shields.io/badge/license-apache_2.0-red?style=for-the-badge&logo=none" alt="license" /></p>
7+
<p align="center"><a href="https://github.com/create-go-app/cli/releases" target="_blank"><img src="https://img.shields.io/badge/version-v1.2.1-blue?style=for-the-badge&logo=none" alt="cli version" /></a>&nbsp;<a href="https://pkg.go.dev/github.com/create-go-app/cli/pkg/cgapp?tab=doc" target="_blank"><img src="https://img.shields.io/badge/Go-1.11+-00ADD8?style=for-the-badge&logo=go" alt="go version" /></a>&nbsp;<a href="https://gocover.io/github.com/create-go-app/cli/pkg/cgapp" target="_blank"><img src="https://img.shields.io/badge/Go_Cover-98%25-success?style=for-the-badge&logo=none" alt="go cover" /></a>&nbsp;<a href="https://goreportcard.com/report/github.com/create-go-app/cli" target="_blank"><img src="https://img.shields.io/badge/Go_report-A+-success?style=for-the-badge&logo=none" alt="go report" /></a>&nbsp;<img src="https://img.shields.io/badge/license-apache_2.0-red?style=for-the-badge&logo=none" alt="license" /></p>
88

99
## ⚡️ [Quick start](https://create-go.app/quick-start/)
1010

Taskfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tasks:
4444
cmds:
4545
- task: security
4646
- task: test
47-
- git tag -a {{.TAG}} -m "Bump {{.TAG}}"
47+
- git tag -a {{.TAG}} -m "{{.TAG}}"
4848
- git push origin {{.TAG}}
4949
- goreleaser --rm-dist
5050

pkg/cgapp/version.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@ package cgapp
22

33
var (
44
// cgapp CLI version
5-
version = "1.2.0"
5+
version = "1.2.1"
66

77
// Templates registry
88
registry = map[string]string{
99
// Backend templates
1010
"net/http": "create-go-app/net_http-go-template",
1111
"fiber": "create-go-app/fiber-go-template",
12+
"echo": "create-go-app/echo-go-template",
1213

1314
// Frontend templates
1415
"react-js": "create-go-app/react-js-template",
15-
"react-ts": "create-go-app/react-ts-template",
1616
"preact": "create-go-app/preact-js-template",
17+
"react-ts": "create-go-app/react-ts-template",
1718

1819
// Docker containers
1920
"nginx": "create-go-app/nginx-docker",

0 commit comments

Comments
 (0)