Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme for next release #178

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ This repo does not accept issues. Please use https://github.com/palomachain/palo
> If you see this after the chains starts producing blocks, then it means that your validator has been jailed.

> #### Note:
> Some have seen errors with GLIBC version differences with the downloaded binaries for v1.1.0. This is caused by a difference in the libraries of the host that built the binary and the host running the binary.
> Some have seen errors with GLIBC version differences with the downloaded binaries for v1.1.1. This is caused by a difference in the libraries of the host that built the binary and the host running the binary.
>
> If you experience these errors, please pull down the code and build it, rather than downloading the prebuilt binary

### To get the latest prebuilt `pigeon` binary:

```shell
wget -O - https://github.com/palomachain/pigeon/releases/download/v1.1.0/pigeon_Linux_x86_64.tar.gz | \
wget -O - https://github.com/palomachain/pigeon/releases/download/v1.1.1/pigeon_Linux_x86_64.tar.gz | \
sudo tar -C /usr/local/bin -xvzf - pigeon
sudo chmod +x /usr/local/bin/pigeon

Expand All @@ -69,7 +69,7 @@ mkdir ~/.pigeon
```shell
git clone https://github.com/palomachain/pigeon.git
cd pigeon
git checkout v1.1.0
git checkout v1.1.1
make build
sudo mv ./build/pigeon /usr/local/bin/pigeon

Expand Down