Skip to content

Commit 54279be

Browse files
committed
docs: v0.15.0
1 parent 667f5d6 commit 54279be

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
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+
## [v0.15.0] - 2024-09-12
11+
1012
### Added
1113

1214
- `deploy add status` command
@@ -297,7 +299,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
297299
- create cli sdk
298300
- create cli renderer
299301

300-
[unreleased]: https://github.com/mia-platform/miactl/compare/v0.14.0...HEAD
302+
[unreleased]: https://github.com/mia-platform/miactl/compare/v0.15.0...HEAD
303+
[v0.15.0]: https://github.com/mia-platform/miactl/compare/v0.14.0...v0.15.0
301304
[v0.14.0]: https://github.com/mia-platform/miactl/compare/v0.13.0...v0.14.0
302305
[v0.13.0]: https://github.com/mia-platform/miactl/compare/v0.12.2...v0.13.0
303306
[v0.12.2]: https://github.com/mia-platform/miactl/compare/v0.12.1...v0.12.2

docs/20_setup.md

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

3030
```sh
31-
go install github.com/mia-platform/miactl/cmd/miactl@v0.14.0
31+
go install github.com/mia-platform/miactl/cmd/miactl@v0.15.0
3232
```
3333

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

3636
```sh
37-
go get -u github.com/mia-platform/miactl/cmd/miactl@0.14.0
37+
go get -u github.com/mia-platform/miactl/cmd/miactl@0.15.0
3838
```
3939

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

4545
```sh
46-
curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.14.0/miactl-linux-amd64 -o /tmp/miactl
46+
curl -fsSL https://github.com/mia-platform/miactl/releases/download/v0.15.0/miactl-linux-amd64 -o /tmp/miactl
4747
```
4848

4949
```sh
50-
wget -q https://github.com/mia-platform/miactl/releases/download/v0.14.0/miactl-linux-amd64 -O /tmp/miactl
50+
wget -q https://github.com/mia-platform/miactl/releases/download/v0.15.0/miactl-linux-amd64 -O /tmp/miactl
5151
```
5252

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

7777
```sh
78-
docker run ghcr.io/mia-platform/miactl:v0.14.0 miactl
78+
docker run ghcr.io/mia-platform/miactl:v0.15.0 miactl
7979
```
8080

8181
### Windows
@@ -174,7 +174,7 @@ only via APIs.
174174

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

docs/40_examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Finally, you can group the commands above and run them inside a pipeline, e.g. a
123123
# Insert that after your pipeline stages
124124
delivery:
125125
stage: deploy
126-
image: ghcr.io/mia-platform/miactl:v0.14.0
126+
image: ghcr.io/mia-platform/miactl:v0.15.0
127127

128128
script:
129129
- miactl version

0 commit comments

Comments
 (0)