Browse Source

ci: update solana cli (#1133)

Paul 3 years ago
parent
commit
96f79993dd
7 changed files with 12 additions and 8 deletions
  1. 1 1
      .github/workflows/tests.yaml
  2. 4 0
      CHANGELOG.md
  3. 3 3
      cli/Cargo.toml
  4. 1 1
      docker/Makefile
  5. 1 1
      docs/src/getting-started/installation.md
  6. 1 1
      lang/Cargo.toml
  7. 1 1
      spl/Cargo.toml

+ 1 - 1
.github/workflows/tests.yaml

@@ -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:

+ 4 - 0
CHANGELOG.md

@@ -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

+ 3 - 3
cli/Cargo.toml

@@ -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"

+ 1 - 1
docker/Makefile

@@ -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.
 #

+ 1 - 1
docs/src/getting-started/installation.md

@@ -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

+ 1 - 1
lang/Cargo.toml

@@ -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"

+ 1 - 1
spl/Cargo.toml

@@ -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"] }