From 5d7dd98c45e986c44e47f09cb5982f1a3c04617e Mon Sep 17 00:00:00 2001 From: Allyedge Date: Fri, 3 Jun 2022 13:57:49 +0200 Subject: [PATCH] feat: update CLI version command --- README.md | 1 + cmd/cli/root.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 958c268..9009c83 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [![Go](https://img.shields.io/badge/go-%2300ADD8.svg?style=for-the-badge&logo=go&logoColor=white)](https://github.com/sern-handler/cli) [![Build](https://img.shields.io/github/workflow/status/sern-handler/cli/goreleaser?style=for-the-badge)](https://github.com/sern-handler/cli) +[![NPM](https://img.shields.io/npm/dt/@sern/cli?style=for-the-badge)](https://npmjs.com/@sern/cli) Our CLI allows you to setup and manage Discord bot projects without writing a single line of code! diff --git a/cmd/cli/root.go b/cmd/cli/root.go index 32b34c7..5bc0f4b 100644 --- a/cmd/cli/root.go +++ b/cmd/cli/root.go @@ -10,7 +10,7 @@ import ( var rootCmd = &cobra.Command{ Use: "sern", Short: "A powerful CLI tool for Sern.", - Version: "0.1.0", + Version: "0.1.1", Run: func(cmd *cobra.Command, args []string) { fmt.Println("Sern CLI") },