Skip to content

Commit b6db9f8

Browse files
authored
chore(cli): Move STACKIT CLI to GA (#944)
Signed-off-by: Alexander Dahmen <[email protected]>
1 parent 9c98766 commit b6db9f8

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
@@ -124,7 +124,7 @@ homebrew_casks:
124124
name: CLI Release Bot
125125
126126
homepage: "https://github.com/stackitcloud/stackit-cli"
127-
description: "A command-line interface to manage STACKIT resources.\nThis CLI is in a beta state. More services and functionality will be supported soon."
127+
description: "A command-line interface to manage STACKIT resources."
128128
license: "Apache-2.0"
129129
# If set to auto, the release will not be uploaded to the homebrew tap repo
130130
# if the tag has a prerelease indicator (e.g. v0.0.1-alpha1)
@@ -144,12 +144,12 @@ snapcrafts:
144144
# centre graphical frontends
145145
title: STACKIT CLI
146146
summary: A command-line interface to manage STACKIT resources.
147-
description: "A command-line interface to manage STACKIT resources.\nThis CLI is in a beta state. More services and functionality will be supported soon."
147+
description: "A command-line interface to manage STACKIT resources."
148148
license: Apache-2.0
149149
confinement: classic
150150
# Grade "devel" will only release to `edge` and `beta` channels
151151
# Grade "stable" will also release to the `candidate` and `stable` channels
152-
grade: devel
152+
grade: stable
153153
# Whether to publish the Snap to the store
154154
publish: true
155155

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
@@ -54,7 +54,7 @@ func NewRootCmd(version, date string, p *print.Printer) *cobra.Command {
5454
cmd := &cobra.Command{
5555
Use: "stackit",
5656
Short: "Manage STACKIT resources using the command line",
57-
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!",
57+
Long: "Manage STACKIT resources using the command line.\nYour feedback is appreciated!",
5858
Args: args.NoArgs,
5959
SilenceErrors: true, // Error is beautified in a custom way before being printed
6060
SilenceUsage: true,
@@ -97,7 +97,7 @@ func NewRootCmd(version, date string, p *print.Printer) *cobra.Command {
9797
},
9898
RunE: func(cmd *cobra.Command, _ []string) error {
9999
if flags.FlagToBoolValue(p, cmd, "version") {
100-
p.Outputf("STACKIT CLI (beta)\n")
100+
p.Outputf("STACKIT CLI\n")
101101

102102
parsedDate, err := time.Parse(time.RFC3339, date)
103103
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)