Skip to content

Commit

Permalink
Merge pull request #88 from nevi-me/v0.7.0
Browse files Browse the repository at this point in the history
Bump versions to 0.7.0
  • Loading branch information
jayantk authored Dec 7, 2022
2 parents ae47069 + 79d7d0a commit c7b802f
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
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.9, < 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

0 comments on commit c7b802f

Please sign in to comment.