Sfoglia il codice sorgente

update forgotten solana versions (#1751)

Paul 3 anni fa
parent
commit
016a1d3da5

+ 1 - 1
CHANGELOG.md

@@ -31,7 +31,7 @@ The minor version will be incremented upon a breaking change and the patch versi
 
 * avm: `avm install` switches to the newly installed version after installation finishes ([#1670](https://github.com/project-serum/anchor/pull/1670)).
 * spl: Re-export the `spl_token` crate ([#1665](https://github.com/project-serum/anchor/pull/1665)).
-* lang, cli, spl: Update solana toolchain to v1.9.13 ([#1653](https://github.com/project-serum/anchor/pull/1653)).
+* lang, cli, spl: Update solana toolchain to v1.9.13 ([#1653](https://github.com/project-serum/anchor/pull/1653) and [#1751](https://github.com/project-serum/anchor/pull/1751)).
 * lang: `Program` type now deserializes `programdata_address` only on demand ([#1723](https://github.com/project-serum/anchor/pull/1723)).
 
 ## [0.23.0] - 2022-03-20

+ 3 - 3
client/Cargo.toml

@@ -15,8 +15,8 @@ anchor-lang = { path = "../lang", version = "0.23.0" }
 anyhow = "1.0.32"
 regex = "1.4.5"
 serde = { version = "1.0.122", features = ["derive"] }
-solana-client = "1.7.2"
-solana-sdk = "1.7.2"
-solana-account-decoder = "1.7.2"
+solana-client = "~1.9.13"
+solana-sdk = "~1.9.13"
+solana-account-decoder = "~1.9.13"
 thiserror = "1.0.20"
 url = "2.2.2"

+ 1 - 1
client/example/Cargo.toml

@@ -17,4 +17,4 @@ shellexpand = "2.1.0"
 anyhow = "1.0.32"
 rand = "0.7.3"
 clap = { version = "3.0.0-rc.0", features = ["derive"] }
-solana-sdk = "1.7.11"
+solana-sdk = "~1.9.13"

+ 1 - 1
tests/zero-copy/programs/zero-copy/Cargo.toml

@@ -22,4 +22,4 @@ anchor-lang = { path = "../../../../lang" }
 [dev-dependencies]
 anchor-client = { path = "../../../../client", features = ["debug"] }
 bytemuck = "1.4.0"
-solana-program-test = "1.8.0"
+solana-program-test = "1.9.13"