Skip to content

Commit c7b802f

Browse files
authored
Merge pull request #88 from nevi-me/v0.7.0
Bump versions to 0.7.0
2 parents ae47069 + 79d7d0a commit c7b802f

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

examples/cw-contract/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ cosmwasm-storage = { version = "1.0.0" }
3434
cw-storage-plus = "0.13.4"
3535
schemars = "0.8"
3636
serde = { version = "1.0", default-features = false, features = ["derive"] }
37-
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.
37+
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.
3838

3939
[dev-dependencies]
4040
cosmwasm-schema = { version = "1.0.0" }

examples/sol-anchor-contract/programs/example-sol-anchor-contract/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ default = []
1717

1818
[dependencies]
1919
anchor-lang = "0.25.0"
20-
pyth-sdk-solana = "0.5.0"
21-
solana-program = "1.8.1, < 1.11"
20+
pyth-sdk-solana = { path = "../../../../pyth-sdk-solana", version = "0.7.0" }
21+
solana-program = ">= 1.10, < 1.15"

examples/sol-contract/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ crate-type = ["cdylib", "lib"]
1010
[dependencies]
1111
borsh = "0.9"
1212
arrayref = "0.3.6"
13-
solana-program = "=1.13.3"
14-
pyth-sdk-solana = { path = "../../pyth-sdk-solana", version = "0.6.1" }
13+
solana-program = ">= 1.10, < 1.15"
14+
pyth-sdk-solana = { path = "../../pyth-sdk-solana", version = "0.7.0" }

pyth-sdk-cw/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-sdk-cw"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Pyth Data Foundation"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -14,7 +14,7 @@ readme = "README.md"
1414
cosmwasm-std = { version = "1.0.0" }
1515
cosmwasm-storage = { version = "1.0.0" }
1616
serde = { version = "1.0.136", features = ["derive"] }
17-
pyth-sdk = { path = "../pyth-sdk", version = "0.6.1" }
17+
pyth-sdk = { path = "../pyth-sdk", version = "0.7.0" }
1818
schemars = "0.8.1"
1919

2020
[dev-dependencies]

pyth-sdk-solana/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-sdk-solana"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Pyth Data Foundation"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -19,7 +19,7 @@ num-derive = "0.3"
1919
num-traits = "0.2"
2020
thiserror = "1.0"
2121
serde = { version = "1.0.136", features = ["derive"] }
22-
pyth-sdk = { path = "../pyth-sdk", version = "0.6.1" }
22+
pyth-sdk = { path = "../pyth-sdk", version = "0.7.0" }
2323

2424
[dev-dependencies]
2525
solana-client = ">= 1.9, < 1.15"

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
[package]
22
name = "test-contract"
3-
version = "0.2.2"
3+
version = "0.2.0"
44
edition = "2018"
55

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

1010
[dependencies]
11-
pyth-sdk-solana = { path = "../", version = "0.6.1" }
12-
solana-program = "=1.13.3"
11+
pyth-sdk-solana = { path = "../", version = "0.7.0" }
12+
solana-program = ">= 1.10, < 1.15"
1313
bytemuck = "1.7.2"
1414
borsh = "0.9"
1515
borsh-derive = "0.9.0"
1616

1717
[dev-dependencies]
18-
solana-program-test = "=1.13.3"
19-
solana-client = "=1.13.3"
20-
solana-sdk = "=1.13.3"
18+
solana-program-test = ">= 1.10, < 1.15"
19+
solana-client = ">= 1.10, < 1.15"
20+
solana-sdk = ">= 1.10, < 1.15"
2121

2222
[lib]
2323
crate-type = ["cdylib", "lib"]

pyth-sdk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-sdk"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Pyth Data Foundation"]
55
edition = "2018"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)