diff --git a/examples/cw-contract/Cargo.toml b/examples/cw-contract/Cargo.toml index 833a509..9ce2607 100644 --- a/examples/cw-contract/Cargo.toml +++ b/examples/cw-contract/Cargo.toml @@ -34,7 +34,7 @@ cosmwasm-storage = { version = "1.0.0" } cw-storage-plus = "0.13.4" schemars = "0.8" serde = { version = "1.0", default-features = false, features = ["derive"] } -pyth-sdk-cw = { version = "0.2.0", path = "../../pyth-sdk-cw" } # Remove path and use version only when you use this example on your own. +pyth-sdk-cw = { version = "0.3.0", path = "../../pyth-sdk-cw" } # Remove path and use version only when you use this example on your own. [dev-dependencies] cosmwasm-schema = { version = "1.0.0" } diff --git a/examples/sol-anchor-contract/programs/example-sol-anchor-contract/Cargo.toml b/examples/sol-anchor-contract/programs/example-sol-anchor-contract/Cargo.toml index a830304..bdac1d9 100644 --- a/examples/sol-anchor-contract/programs/example-sol-anchor-contract/Cargo.toml +++ b/examples/sol-anchor-contract/programs/example-sol-anchor-contract/Cargo.toml @@ -17,5 +17,5 @@ default = [] [dependencies] anchor-lang = "0.25.0" -pyth-sdk-solana = "0.5.0" -solana-program = "1.8.1, < 1.11" +pyth-sdk-solana = { path = "../../../../pyth-sdk-solana", version = "0.7.0" } +solana-program = ">= 1.10, < 1.15" diff --git a/examples/sol-contract/Cargo.toml b/examples/sol-contract/Cargo.toml index 647549c..00d18c7 100644 --- a/examples/sol-contract/Cargo.toml +++ b/examples/sol-contract/Cargo.toml @@ -10,5 +10,5 @@ crate-type = ["cdylib", "lib"] [dependencies] borsh = "0.9" arrayref = "0.3.6" -solana-program = "=1.13.3" -pyth-sdk-solana = { path = "../../pyth-sdk-solana", version = "0.6.1" } +solana-program = ">= 1.10, < 1.15" +pyth-sdk-solana = { path = "../../pyth-sdk-solana", version = "0.7.0" } diff --git a/pyth-sdk-cw/Cargo.toml b/pyth-sdk-cw/Cargo.toml index 1bc026b..e1e3cb7 100644 --- a/pyth-sdk-cw/Cargo.toml +++ b/pyth-sdk-cw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyth-sdk-cw" -version = "0.2.0" +version = "0.3.0" authors = ["Pyth Data Foundation"] edition = "2018" license = "Apache-2.0" @@ -14,7 +14,7 @@ readme = "README.md" cosmwasm-std = { version = "1.0.0" } cosmwasm-storage = { version = "1.0.0" } serde = { version = "1.0.136", features = ["derive"] } -pyth-sdk = { path = "../pyth-sdk", version = "0.6.1" } +pyth-sdk = { path = "../pyth-sdk", version = "0.7.0" } schemars = "0.8.1" [dev-dependencies] diff --git a/pyth-sdk-solana/Cargo.toml b/pyth-sdk-solana/Cargo.toml index ed16e5d..9afd6cb 100644 --- a/pyth-sdk-solana/Cargo.toml +++ b/pyth-sdk-solana/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyth-sdk-solana" -version = "0.6.1" +version = "0.7.0" authors = ["Pyth Data Foundation"] edition = "2018" license = "Apache-2.0" @@ -19,7 +19,7 @@ num-derive = "0.3" num-traits = "0.2" thiserror = "1.0" serde = { version = "1.0.136", features = ["derive"] } -pyth-sdk = { path = "../pyth-sdk", version = "0.6.1" } +pyth-sdk = { path = "../pyth-sdk", version = "0.7.0" } [dev-dependencies] solana-client = ">= 1.9, < 1.15" diff --git a/pyth-sdk-solana/test-contract/Cargo.toml b/pyth-sdk-solana/test-contract/Cargo.toml index b9ef683..185edf5 100644 --- a/pyth-sdk-solana/test-contract/Cargo.toml +++ b/pyth-sdk-solana/test-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-contract" -version = "0.2.2" +version = "0.2.0" edition = "2018" [features] @@ -8,16 +8,16 @@ test-bpf = [] no-entrypoint = [] [dependencies] -pyth-sdk-solana = { path = "../", version = "0.6.1" } -solana-program = "=1.13.3" +pyth-sdk-solana = { path = "../", version = "0.7.0" } +solana-program = ">= 1.10, < 1.15" bytemuck = "1.7.2" borsh = "0.9" borsh-derive = "0.9.0" [dev-dependencies] -solana-program-test = "=1.13.3" -solana-client = "=1.13.3" -solana-sdk = "=1.13.3" +solana-program-test = ">= 1.10, < 1.15" +solana-client = ">= 1.10, < 1.15" +solana-sdk = ">= 1.10, < 1.15" [lib] crate-type = ["cdylib", "lib"] diff --git a/pyth-sdk/Cargo.toml b/pyth-sdk/Cargo.toml index 8ebae1c..79b161c 100644 --- a/pyth-sdk/Cargo.toml +++ b/pyth-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyth-sdk" -version = "0.6.1" +version = "0.7.0" authors = ["Pyth Data Foundation"] edition = "2018" license = "Apache-2.0"