Skip to content

Commit a17ebb7

Browse files
committed
#26 Prepare 0.5.2 release
1 parent 5633605 commit a17ebb7

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ It allows to launch tests or import API artifacts with minimal dependencies.
77

88
## Build Status
99

10-
Current development version is `0.5.2-SNAPSHOT`. [![GitHub Workflow Status](https://img.shields.io/github/workflow/status/microcks/microcks-cli/build-verify-package?logo=github&style=for-the-badge)](https://github.com/microcks/microcks-cli/actions)
10+
Current development version is `0.5.3-SNAPSHOT`. [![GitHub Workflow Status](https://img.shields.io/github/workflow/status/microcks/microcks-cli/build-verify-package?logo=github&style=for-the-badge)](https://github.com/microcks/microcks-cli/actions)
1111

1212
## Usage instructions
1313

@@ -128,16 +128,14 @@ Binary releases for Linux, MacOS or Windows platform are available on the GitHub
128128

129129
### Container image
130130

131-
The `microcks-cli` is now available as a container image as version `0.2.0`. So that you'd be able to easily use it from a GitLab CI or a [Tekton pipeline](https://github.com/tektoncd/pipeline). The hosting repository is now on Docker Hub [here](https://hub.docker.com/r/microcks/microcks-cli).
131+
The `microcks-cli` is available as a container image. So that you'd be able to easily use it from a GitLab CI or a [Tekton pipeline](https://github.com/tektoncd/pipeline). The hosting repository is on Quay.io [here](https://quay.io/repository/microcks/microcks-cli).
132132

133133
Below a sample on how using the image without getting the CLI binary:
134134

135135
```
136136
$ docker run -it quay.io/microcks/microcks-cli:latest microcks-cli test 'Beer Catalog API:0.9' http://beer-catalog-impl-beer-catalog-dev.apps.144.76.24.92.nip.io/api/ POSTMAN --microcksURL=http://microcks.apps.144.76.24.92.nip.io/api/ --keycloakClientId=microcks-serviceaccount --keycloakClientSecret=7deb71e8-8c80-4376-95ad-00a399ee3ca1 --waitFor=8sec --operationsHeaders='{"globals": [{"name": "x-api-key", "values": "my-values"}], "GET /beer": [{"name": "x-trace-id", "values": "xcvbnsdfghjklm"}]}'
137137
```
138138

139-
> Previous versions of the `microcks-cli` container image (< `0.3.0`) where hosted on Docker Hub and you can retrieve them using `microcks/microcks:0.2.0` version for example.
140-
141139

142140
## Tekton tasks
143141

cmd/version.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
package cmd
22

3-
import "fmt"
3+
import (
4+
"fmt"
5+
6+
"github.com/microcks/microcks-cli/version"
7+
)
48

59
type versionCommand struct {
610
}
@@ -12,5 +16,5 @@ func NewVersionCommand() Command {
1216

1317
// Execute implementation on versionCommand structure
1418
func (c *versionCommand) Execute() {
15-
fmt.Println("0.5.1")
19+
fmt.Println(version.Version)
1620
}

0 commit comments

Comments
 (0)