Skip to content

Commit

Permalink
docs: v2.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiola committed Jan 23, 2025
1 parent 99b9e08 commit 3976cf9
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-rc.1] - 2025-01-23

### Changed

- update to go 1.23.5
Expand Down Expand Up @@ -195,7 +197,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-rc...HEAD
[Unreleased]: https://github.com/mia-platform/mlp/compare/v2.0.0-rc.1...HEAD
[v2.0.0-rc.1]: https://github.com/mia-platform/mlp/compare/v2.0.0-rc...v2.0.0-rc.1
[v2.0.0-rc]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta.2...v2.0.0-rc
[v2.0.0-beta.2]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta.1...v2.0.0-beta.2
[v2.0.0-beta.1]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta...v2.0.0-beta.1
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/[email protected]
go install github.com/mia-platform/[email protected].1
```

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

```sh
go get -u github.com/mia-platform/[email protected]
go get -u github.com/mia-platform/[email protected].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 --proto '=https' --tlsv1.2 https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc/mlp-linux-amd64 -o /tmp/mlp
curl -fsSL --proto '=https' --tlsv1.2 https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc.1/mlp-linux-amd64 -o /tmp/mlp
```

```sh
wget -q --https-only --secure-protocol=TLSv1_2 https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc/mlp-linux-amd64 -O /tmp/mlp
wget -q --https-only --secure-protocol=TLSv1_2 https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc.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:v2.0.0-rc
docker run ghcr.io/mia-platform/mlp:v2.0.0-rc.1
```

### Windows
Expand Down

0 comments on commit 3976cf9

Please sign in to comment.