Skip to content

Commit 5177e71

Browse files
committed
release: v0.2.0-beta.1
1 parent 3b5dd5d commit 5177e71

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

cmd/rfw/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ import (
66

77
"github.com/mirkobrombin/go-cli-builder/v1/root"
88
"github.com/rfwlab/rfw/cmd/rfw/commands"
9+
"github.com/rfwlab/rfw/v1/core"
910
)
1011

1112
func main() {
12-
rootCmd := root.NewRootCommand("rfw", "rfw [command]", "RFW command line interface", "0.0.0")
13+
rootCmd := root.NewRootCommand("rfw", "rfw [command]", "RFW command line interface", core.Version)
1314

1415
rootCmd.AddCommand(commands.NewInitCommand())
1516
rootCmd.AddCommand(commands.NewDevCommand())

docs/articles/guide/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ rfw dev --port 3000 --host --debug
4646
Expected output:
4747

4848
```text
49-
rfw v0.1.3
49+
rfw v0.2.0-beta.1
5050
5151
➜ Local: http://localhost:3000/
5252
➜ Network: http://192.168.1.10:3000/

v1/core/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package core
22

3-
const Version = "v0.1.3"
3+
const Version = "v0.2.0-beta.1"

0 commit comments

Comments
 (0)