Skip to content

Commit 19fde1d

Browse files
committed
docs: v0.4.0
1 parent 4f83d1f commit 19fde1d

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.4.0 2022-03-07
11+
12+
### Changed
13+
14+
- complete rework of cli
15+
- new login that uses the OIDC flow via the user browser
16+
- new deploy command, now it will wait for the pipeline to finish
17+
- new project list command
18+
- the user now can create contexts for multiple scenarios and consoles
19+
1020
## 0.3.1 2022-01-21
1121

1222
### Fixed

docs/20_setup.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,49 +23,48 @@ If you have [Golang] installed with a version >= 1.13 in your system and you hav
2323
install `miactl` like this:
2424

2525
```sh
26-
go install github.com/mia-platform/miactl@0.3.1
26+
go install github.com/mia-platform/miactl@0.4.0
2727
```
2828

2929
Or like this if the `install` command is not available
3030

3131
```sh
32-
go get -u github.com/mia-platform/miactl@0.3.1
32+
go get -u github.com/mia-platform/miactl@0.4.0
3333
```
3434

3535
### Binary Download
3636

37-
You can install `miactl` with the use of `curl` or `wget` and downloading the latest packages available on GitHub:
37+
You can install `miactl` with the use of `curl` or `wget` and downloading the latest packages available on GitHub
38+
choosing the correct platform and operating system:
3839

3940
```sh
40-
curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.3.1/miactl_$(uname)_$(uname -m).tar.gz -o /tmp/miactl.tar.gz
41+
curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.4.0/miactl-linux-amd64 -o /tmp/miactl
4142
```
4243

4344
```sh
44-
wget -q https://github.com/mia-platform/miactl/releases/download/v0.3.1/miactl_$(uname)_$(uname -m).tar.gz -O /tmp/miactl.tar.gz
45+
wget -q https://github.com/mia-platform/miactl/releases/download/v0.4.0/miactl-linux-amd64 -O /tmp/miactl
4546
```
4647

4748
After you have downloaded the file you can validate it against the checksum you can find at this [url] running the
4849
command:
4950

5051
```sh
51-
sha256sum /tmp/miactl.tar.gz
52+
sha256sum /tmp/miactl
5253
```
5354

5455
After you have validated that the downloaded file is correct, move the binary in your `/usr/local/bin` folder
5556

5657
```sh
57-
mkdir /tmp/miactl
58-
tar -xvf /tmp/miactl.tar.gz --directory /tmp/miactl
59-
mv /tmp/miactl/miactl /usr/local/bin
60-
rm -fr /tmp/miactl /tmp/miactl.tar.gz
58+
chmod +x /tmp/miactl
59+
mv /tmp/miactl /usr/local/bin
6160
```
6261

6362
### Docker
6463

6564
If you want to run the cli in its environment or you want to test the cli you can use the Docker image:
6665

6766
```sh
68-
docker run ghr.io/mia-platform/miactl@0.3.1 miactl
67+
docker run ghr.io/mia-platform/miactl@0.4.0 miactl
6968
```
7069

7170
## Shell Autocompletion
@@ -124,7 +123,7 @@ enable the autocompletion.
124123

125124
[Homebrew]: https://brew.sh "The Missing Package Manager for macOS (or Linux)"
126125
[Golang]: https://go.dev "Build simple, secure, scalable systems with Go"
127-
[url]: https://github.com/mia-platform/miactl/releases/download/v0.3.1/checksums.txt "miactl checksums"
126+
[url]: https://github.com/mia-platform/miactl/releases/download/v0.4.0/checksums.txt "miactl checksums"
128127
[`bash-completion`]: https://github.com/scop/bash-completion "Programmable completion functions for bash"
129128
[`oh-my-zsh`]: https://ohmyz.sh "Oh My Zsh is a delightful, open source, community-driven
130129
framework for managing your Zsh configuration"

0 commit comments

Comments
 (0)