ci: update solana cli (#1133)

This commit is contained in:
Paul 2021-12-13 17:23:36 +01:00 committed by GitHub
parent fcb07eb8c3
commit 96f79993dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 12 additions and 8 deletions

View File

@ -8,7 +8,7 @@ on:
branches:
- master
env:
SOLANA_CLI_VERSION: 1.8.0
SOLANA_CLI_VERSION: 1.8.5
NODE_VERSION: 17.0.1
jobs:

View File

@ -11,6 +11,10 @@ incremented for features.
## [Unreleased]
### Features
* lang,ts,ci,cli,docs: update solana toolchain([#1133](https://github.com/project-serum/anchor/pull/1133))
## [0.19.0] - 2021-12-08
### Fixes

View File

@ -24,9 +24,9 @@ shellexpand = "2.1.0"
toml = "0.5.8"
semver = "1.0.4"
serde = { version = "1.0.122", features = ["derive"] }
solana-sdk = "1.8.0"
solana-program = "1.8.0"
solana-client = "1.8.0"
solana-sdk = "1.8.5"
solana-program = "1.8.5"
solana-client = "1.8.5"
serum-common = { git = "https://github.com/project-serum/serum-dex", features = ["client"] }
dirs = "3.0"
heck = "0.3.1"

View File

@ -6,7 +6,7 @@ ANCHOR_CLI=v$(shell awk -F ' = ' '$$1 ~ /version/ { gsub(/[\"]/, "", $$2); print
#
# Solana toolchain.
#
SOLANA_CLI=v1.8.0
SOLANA_CLI=v1.8.5
#
# Build version should match the Anchor cli version.
#

View File

@ -18,7 +18,7 @@ rustup component add rustfmt
See the solana [docs](https://docs.solana.com/cli/install-solana-cli-tools) for installation instructions. On macOS and Linux,
```bash
sh -c "$(curl -sSfL https://release.solana.com/v1.8.0/install)"
sh -c "$(curl -sSfL https://release.solana.com/v1.8.5/install)"
```
## Install Yarn

View File

@ -36,6 +36,6 @@ anchor-derive-accounts = { path = "./derive/accounts", version = "0.19.0" }
base64 = "0.13.0"
borsh = "0.9"
bytemuck = "1.4.0"
solana-program = "1.8.0"
solana-program = "1.8.5"
thiserror = "1.0.20"
bincode = "1.3.3"

View File

@ -19,6 +19,6 @@ dex = ["serum_dex"]
[dependencies]
anchor-lang = { path = "../lang", version = "0.19.0", features = ["derive"] }
serum_dex = { git = "https://github.com/project-serum/serum-dex", rev = "1be91f2", version = "0.4.0", features = ["no-entrypoint"], optional = true }
solana-program = "1.8.0"
solana-program = "1.8.5"
spl-token = { version = "3.1.1", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "1.0.3", features = ["no-entrypoint"] }