Skip to content

Commit b84e14e

Browse files
committed
fix version specs
1 parent d607d19 commit b84e14e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

examples/sol-contract/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "example-sol-contract"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Pyth Data Foundation"]
55
edition = "2021"
66

@@ -10,5 +10,5 @@ crate-type = ["cdylib", "lib"]
1010
[dependencies]
1111
borsh = "0.10.3"
1212
arrayref = "0.3.6"
13-
solana-program = ">= 1.10, <= 1.16"
14-
pyth-sdk-solana = { path = "../../pyth-sdk-solana", version = "0.8.0" }
13+
solana-program = ">= 1.10"
14+
pyth-sdk-solana = { path = "../../pyth-sdk-solana", version = "0.9.0" }

pyth-sdk-solana/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = [ "pyth", "solana", "oracle" ]
1111
readme = "README.md"
1212

1313
[dependencies]
14-
solana-program = ">= 1.9, <= 1.17"
14+
solana-program = ">= 1.9"
1515
borsh = "0.10.3"
1616
borsh-derive = "0.10.3"
1717
bytemuck = "1.7.2"
@@ -22,8 +22,8 @@ serde = { version = "1.0.136", features = ["derive"] }
2222
pyth-sdk = { path = "../pyth-sdk", version = "0.8.0" }
2323

2424
[dev-dependencies]
25-
solana-client = ">= 1.9, <= 1.17"
26-
solana-sdk = ">= 1.9, <= 1.17"
25+
solana-client = ">= 1.9"
26+
solana-sdk = ">= 1.9"
2727

2828
[lib]
2929
crate-type = ["cdylib", "lib"]

pyth-sdk-solana/test-contract/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "test-contract"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2018"
55

66
[features]
77
test-bpf = []
88
no-entrypoint = []
99

1010
[dependencies]
11-
pyth-sdk-solana = { path = "../", version = "0.8.0" }
11+
pyth-sdk-solana = { path = "../", version = "0.9.0" }
1212
solana-program = ">= 1.10, <= 1.16"
1313
bytemuck = "1.7.2"
1414
borsh = "0.10.3"

0 commit comments

Comments
 (0)