Skip to content

Commit 819266e

Browse files
committed
chore(cli): Make stackit cli stable
Signed-off-by: Alexander Dahmen <[email protected]>
1 parent 798c0c3 commit 819266e

File tree

6 files changed

+9
-11
lines changed

6 files changed

+9
-11
lines changed

.goreleaser.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ homebrew_casks:
126126
name: CLI Release Bot
127127
128128
homepage: "https://github.com/stackitcloud/stackit-cli"
129-
description: "A command-line interface to manage STACKIT resources.\nThis CLI is in a beta state. More services and functionality will be supported soon."
129+
description: "A command-line interface to manage STACKIT resources."
130130
license: "Apache-2.0"
131131
# If set to auto, the release will not be uploaded to the homebrew tap repo
132132
# if the tag has a prerelease indicator (e.g. v0.0.1-alpha1)
@@ -146,12 +146,12 @@ snapcrafts:
146146
# centre graphical frontends
147147
title: STACKIT CLI
148148
summary: A command-line interface to manage STACKIT resources.
149-
description: "A command-line interface to manage STACKIT resources.\nThis CLI is in a beta state. More services and functionality will be supported soon."
149+
description: "A command-line interface to manage STACKIT resources."
150150
license: Apache-2.0
151151
confinement: classic
152152
# Grade "devel" will only release to `edge` and `beta` channels
153153
# Grade "stable" will also release to the `candidate` and `stable` channels
154-
grade: devel
154+
grade: stable
155155
# Whether to publish the Snap to the store
156156
publish: true
157157

INSTALLATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ $ stackit config profile import -c @default.json --name myProfile
6767
The STACKIT CLI is available as a [Snap](https://snapcraft.io/stackit), and can be installed via:
6868

6969
```shell
70-
sudo snap install stackit --beta --classic
70+
sudo snap install stackit --classic
7171
```
7272

7373
or via the [Snap Store](https://snapcraft.io/snap-store) for desktop.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<br>
66
</div>
77

8-
# STACKIT CLI (BETA)
8+
# STACKIT CLI
99

1010
[![Go Report Card](https://goreportcard.com/badge/github.com/stackitcloud/stackit-cli)](https://goreportcard.com/report/github.com/stackitcloud/stackit-cli) ![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/stackitcloud/stackit-cli) [![GitHub License](https://img.shields.io/github/license/stackitcloud/stackit-cli)](https://www.apache.org/licenses/LICENSE-2.0)
1111

@@ -19,7 +19,6 @@ The STACKIT CLI allows you to manage your STACKIT services and resources as well
1919
- DNS zones and record-sets
2020
- Databases such as PostgreSQL Flex, MongoDB Flex and SQLServer Flex
2121

22-
This CLI is in a BETA state. More services and functionality will be supported soon.
2322
Your feedback is appreciated!
2423
Feel free to open [GitHub issues](https://github.com/stackitcloud/stackit-cli) to provide feature requests and bug reports.
2524

docs/stackit.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ Manage STACKIT resources using the command line
55
### Synopsis
66

77
Manage STACKIT resources using the command line.
8-
This CLI is in a BETA state.
9-
More services and functionality will be supported soon. Your feedback is appreciated!
8+
Your feedback is appreciated!
109

1110
```
1211
stackit [flags]

internal/cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func NewRootCmd(version, date string, p *print.Printer) *cobra.Command {
5555
cmd := &cobra.Command{
5656
Use: "stackit",
5757
Short: "Manage STACKIT resources using the command line",
58-
Long: "Manage STACKIT resources using the command line.\nThis CLI is in a BETA state.\nMore services and functionality will be supported soon. Your feedback is appreciated!",
58+
Long: "Manage STACKIT resources using the command line.\nYour feedback is appreciated!",
5959
Args: args.NoArgs,
6060
SilenceErrors: true, // Error is beautified in a custom way before being printed
6161
SilenceUsage: true,
@@ -98,7 +98,7 @@ func NewRootCmd(version, date string, p *print.Printer) *cobra.Command {
9898
},
9999
RunE: func(cmd *cobra.Command, _ []string) error {
100100
if flags.FlagToBoolValue(p, cmd, "version") {
101-
p.Outputf("STACKIT CLI (beta)\n")
101+
p.Outputf("STACKIT CLI\n")
102102

103103
parsedDate, err := time.Parse(time.RFC3339, date)
104104
if err != nil {

internal/pkg/auth/templates/login-successful.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<base href="/" />
77
<meta
88
name="description"
9-
content="A command-line interface to manage STACKIT resources. This CLI is in a BETA state. More services and functionality will be supported soon."
9+
content="A command-line interface to manage STACKIT resources."
1010
/>
1111
<meta name="viewport" content="width=device-width, initial-scale=1" />
1212
<meta property="og:title" content="STACKIT" />

0 commit comments

Comments
 (0)