Skip to content

Commit

Permalink
docs: v2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiola committed Sep 19, 2024
1 parent 09df5db commit 70d6a8d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 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]

## [v2.0.0-beta.1] - 2024-09-19

### Changed

- update to go 1.23.1
Expand Down Expand Up @@ -166,7 +168,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial Release 🎉🎉🎉

[Unreleased]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta...HEAD
[Unreleased]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta.1...HEAD
[v2.0.0-beta.1]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta...v2.0.0-beta.1
[v2.0.0-beta]: https://github.com/mia-platform/mlp/compare/v1.2.3...v2.0.0-beta
[v1.2.3]: https://github.com/mia-platform/mlp/compare/v1.2.2...v1.2.3
[v1.2.2]: https://github.com/mia-platform/mlp/compare/v1.2.1...v1.2.2
Expand Down
10 changes: 5 additions & 5 deletions docs/20_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ If you have [Golang] installed with a version >= 1.13 in your system and you hav
install `mlp` like this:

```sh
go install github.com/mia-platform/mlp@vv2.0.0-beta
go install github.com/mia-platform/mlp@v2.0.0-beta.1
```

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

```sh
go get -u github.com/mia-platform/mlp@vv2.0.0-beta
go get -u github.com/mia-platform/mlp@v2.0.0-beta.1
```

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

```sh
curl -fsSL https://github.com/mia-platform/mlp/releases/download/vv2.0.0-beta/mlp-linux-amd64 -o /tmp/mlp
curl -fsSL https://github.com/mia-platform/mlp/releases/download/v2.0.0-beta.1/mlp-linux-amd64 -o /tmp/mlp
```

```sh
wget -q https://github.com/mia-platform/mlp/releases/download/vv2.0.0-beta/mlp-linux-amd64 -O /tmp/mlp
wget -q https://github.com/mia-platform/mlp/releases/download/v2.0.0-beta.1/mlp-linux-amd64 -O /tmp/mlp
```

After you have downloaded the file you can validate it against the checksum you can find at this [url] running the
Expand All @@ -71,7 +71,7 @@ sudo install -g root -o root /tmp/mlp /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 ghcr.io/mia-platform/mlp:vv2.0.0-beta
docker run ghcr.io/mia-platform/mlp:v2.0.0-beta.1
```

### Windows
Expand Down

0 comments on commit 70d6a8d

Please sign in to comment.