Skip to content

Commit

Permalink
docs: v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiola committed Dec 20, 2023
1 parent bdf6307 commit 7dd9844
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0] - 2023-12-20

### Added

- `company iam list` command
Expand Down Expand Up @@ -169,7 +171,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- create cli sdk
- create cli renderer

[unreleased]: https://github.com/mia-platform/miactl/compare/v0.9.0...HEAD
[unreleased]: https://github.com/mia-platform/miactl/compare/v0.10.0...HEAD
[0.10.0]: https://github.com/mia-platform/miactl/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/mia-platform/miactl/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/mia-platform/miactl/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/mia-platform/miactl/compare/v0.6.1...v0.7.0
Expand Down
12 changes: 6 additions & 6 deletions docs/20_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ If you have [Golang] installed with a version >= 1.13 in your system and you hav
install `miactl` like this:

```sh
go install github.com/mia-platform/miactl/cmd/miactl@v0.9.0
go install github.com/mia-platform/miactl/cmd/miactl@v0.10.0
```

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

```sh
go get -u github.com/mia-platform/miactl/cmd/miactl@0.9.0
go get -u github.com/mia-platform/miactl/cmd/miactl@0.10.0
```

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

```sh
curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.9.0/miactl-linux-amd64 -o /tmp/miactl
curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.10.0/miactl-linux-amd64 -o /tmp/miactl
```

```sh
wget -q https://github.com/mia-platform/miactl/releases/download/v0.9.0/miactl-linux-amd64 -O /tmp/miactl
wget -q https://github.com/mia-platform/miactl/releases/download/v0.10.0/miactl-linux-amd64 -O /tmp/miactl
```

After you have downloaded the file you can validate it against the checksum you can find at this [url] running the
Expand Down Expand Up @@ -74,7 +74,7 @@ sudo mv /tmp/miactl /usr/local/bin
If you want to run the cli in its environment or you want to test the cli you can use the Docker image:

```sh
docker run ghr.io/mia-platform/miactl@0.9.0 miactl
docker run ghr.io/mia-platform/miactl@0.10.0 miactl
```

### Windows
Expand Down Expand Up @@ -160,7 +160,7 @@ enable the autocompletion.

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

0 comments on commit 7dd9844

Please sign in to comment.