Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions to 0.7.0 #88

Merged
merged 1 commit into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/cw-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions examples/sol-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
4 changes: 2 additions & 2 deletions pyth-sdk-cw/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions pyth-sdk-solana/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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.10, < 1.15"
Expand Down
12 changes: 6 additions & 6 deletions pyth-sdk-solana/test-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[package]
name = "test-contract"
version = "0.2.2"
version = "0.2.0"
edition = "2018"

[features]
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"]
Expand Down
2 changes: 1 addition & 1 deletion pyth-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down