Skip to content

Commit 7d76420

Browse files
committed
docs: v0.8.0
1 parent 2f1e27d commit 7d76420

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.8.0] - 2023-10-10
11+
1012
### Changed
1113

1214
- update go version to 1.21.1
@@ -112,7 +114,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
112114
- create cli sdk
113115
- create cli renderer
114116

115-
[unreleased]: https://github.com/mia-platform/miactl/compare/v0.7.0...HEAD
117+
[unreleased]: https://github.com/mia-platform/miactl/compare/v0.8.0...HEAD
118+
[0.8.0]: https://github.com/mia-platform/miactl/compare/v0.7.0...v0.8.0
116119
[0.7.0]: https://github.com/mia-platform/miactl/compare/v0.6.1...v0.7.0
117120
[0.6.1]: https://github.com/mia-platform/miactl/compare/v0.6.0...v0.6.1
118121
[0.6.0]: https://github.com/mia-platform/miactl/compare/v0.5.0...v0.6.0

docs/20_setup.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ If you have [Golang] installed with a version >= 1.13 in your system and you hav
2727
install `miactl` like this:
2828

2929
```sh
30-
go install github.com/mia-platform/miactl/cmd/miactl@v0.7.0
30+
go install github.com/mia-platform/miactl/cmd/miactl@v0.8.0
3131
```
3232

3333
Or like this if the `install` command is not available
3434

3535
```sh
36-
go get -u github.com/mia-platform/miactl@0.7.0
36+
go get -u github.com/mia-platform/miactl/cmd/miactl@0.8.0
3737
```
3838

3939
#### Binary Download
@@ -42,11 +42,11 @@ You can install `miactl` with the use of `curl` or `wget` and downloading the la
4242
choosing the correct platform and operating system:
4343

4444
```sh
45-
curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.7.0/miactl-linux-amd64 -o /tmp/miactl
45+
curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.8.0/miactl-linux-amd64 -o /tmp/miactl
4646
```
4747

4848
```sh
49-
wget -q https://github.com/mia-platform/miactl/releases/download/v0.7.0/miactl-linux-amd64 -O /tmp/miactl
49+
wget -q https://github.com/mia-platform/miactl/releases/download/v0.8.0/miactl-linux-amd64 -O /tmp/miactl
5050
```
5151

5252
After you have downloaded the file you can validate it against the checksum you can find at this [url] running the
@@ -64,6 +64,7 @@ mv /tmp/miactl /usr/local/bin
6464
```
6565

6666
If the `mv` command replies with a `Permission denied`, retry it as root:
67+
6768
```sh
6869
sudo mv /tmp/miactl /usr/local/bin
6970
```
@@ -73,12 +74,12 @@ sudo mv /tmp/miactl /usr/local/bin
7374
If you want to run the cli in its environment or you want to test the cli you can use the Docker image:
7475

7576
```sh
76-
docker run ghr.io/mia-platform/miactl@0.7.0 miactl
77+
docker run ghr.io/mia-platform/miactl@0.8.0 miactl
7778
```
7879

7980
### Windows
8081

81-
`miactl` is not directly compatible with Windows, even if you have Go installed:
82+
`miactl` is not directly compatible with Windows, even if you have Go installed:
8283
compilation on this OS is not possible due to current technical restrictions.
8384

8485
However, it is still possible to use `miactl` with Windows Subsystem for Linux (WSL), as explained here below.
@@ -91,7 +92,7 @@ Once WSL is installed, to open a Linux bash terminal, press Start+R, enter `bash
9192

9293
#### Install `miactl`
9394

94-
You can now install miactl with any of the methods explained above for Linux,
95+
You can now install miactl with any of the methods explained above for Linux,
9596
we suggest the [binary installation](#binary-download) since it's the most straightforward.
9697

9798
#### Setup a service account
@@ -159,7 +160,7 @@ enable the autocompletion.
159160

160161
[Homebrew]: https://brew.sh "The Missing Package Manager for macOS (or Linux)"
161162
[Golang]: https://go.dev "Build simple, secure, scalable systems with Go"
162-
[url]: https://github.com/mia-platform/miactl/releases/download/v0.7.0/checksums.txt "miactl checksums"
163+
[url]: https://github.com/mia-platform/miactl/releases/download/v0.8.0/checksums.txt "miactl checksums"
163164
[`bash-completion`]: https://github.com/scop/bash-completion "Programmable completion functions for bash"
164165
[`oh-my-zsh`]: https://ohmyz.sh "Oh My Zsh is a delightful, open source, community-driven
165166
framework for managing your Zsh configuration"

0 commit comments

Comments
 (0)