cli, client, lang: Bump solana toolchain to v1.7.1 (#368)

This commit is contained in:
Armani Ferrante 2021-06-09 16:18:07 -07:00 committed by GitHub
parent df51a27a48
commit 381a3dfde6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 9 deletions

View File

@ -6,6 +6,7 @@ cache: cargo
env:
global:
- NODE_VERSION="14.7.0"
- SOLANA_CLI_VERSION="1.7.1"
git:
submodules: true
@ -27,9 +28,9 @@ _examples: &examples
- npm install -g @project-serum/common
- npm install -g @solana/spl-token
- sudo apt-get install -y pkg-config build-essential libudev-dev
- sh -c "$(curl -sSfL https://release.solana.com/v1.6.9/install)"
- sh -c "$(curl -sSfL https://release.solana.com/v${SOLANA_CLI_VERSION}/install)"
- export PATH="/home/travis/.local/share/solana/install/active_release/bin:$PATH"
- export NODE_PATH="/home/travis/.nvm/versions/node/v$NODE_VERSION/lib/node_modules/:$NODE_PATH"
- export NODE_PATH="/home/travis/.nvm/versions/node/v${NODE_VERSION}/lib/node_modules/:$NODE_PATH"
- yes | solana-keygen new
- cargo install --path $TRAVIS_BUILD_DIR/cli anchor-cli --locked

View File

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

View File

@ -11,7 +11,7 @@ anchor-lang = { path = "../lang", version = "0.7.0" }
anyhow = "1.0.32"
regex = "1.4.5"
serde = { version = "1.0.122", features = ["derive"] }
solana-client = "1.6.6"
solana-sdk = "1.6.6"
solana-client = "1.7.1"
solana-sdk = "1.7.1"
thiserror = "1.0.20"
url = "2.2.2"

View File

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

View File

@ -34,5 +34,5 @@ anchor-derive-accounts = { path = "./derive/accounts", version = "0.7.0" }
base64 = "0.13.0"
borsh = "0.8.2"
bytemuck = "1.4.0"
solana-program = "1.6.6"
solana-program = "1.7.1"
thiserror = "1.0.20"