-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from InjectiveLabs/f/1-11-3
feat: v1-11-3 release
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Injective v1.11.3 Upgrade 🥷 | ||
|
||
## Upgrade Guide | ||
|
||
Pursuant to https://forum.cosmos.network/t/cosmos-sdk-security-advisory-barberry/10825, this release includes the barberry patch. | ||
|
||
## Usage | ||
|
||
### Versions | ||
|
||
| Binary | Version |Commit Hash | ||
| -------- | ------- |------- | | ||
| injectived | 1.11.3 |d876e4033b7654709fc7024b40257abdd27fb0f9| | ||
| peggo | 1.11.3 |3f62194bd37aaa8f8c561cd8e4468a09c7c55542| | ||
|
||
`Go version 1.19` | ||
|
||
Verify you're using the correct version by running the below commands: | ||
```bash | ||
injectived version | ||
peggo version | ||
``` | ||
|
||
```bash | ||
docker run public.ecr.aws/l9h3g6c6/injective-core:v1.11.3 injectived version | ||
docker run public.ecr.aws/l9h3g6c6/peggo:v1.11.3 peggo version | ||
``` | ||
|
||
### 🐳 Docker | ||
|
||
Docker images have support for both `amd64` and `arm64` architectures. | ||
|
||
| Image | Description | | ||
| -------- | ------- | | ||
| public.ecr.aws/l9h3g6c6/injective-core:v1.11.3 | Alpine image | | ||
| public.ecr.aws/l9h3g6c6/peggo:v1.11.3 | Alpine image | | ||
|
||
### 🕊️ Download Binaries | ||
|
||
```bash | ||
wget https://github.com/InjectiveLabs/injective-chain-releases/releases/download/PLACEHOLDER/linux-amd64.zip | ||
unzip linux-amd64.zip | ||
sudo mv injectived peggo /usr/bin | ||
sudo mv libwasmvm.x86_64.so /usr/lib | ||
``` |