Skip to content

Commit

Permalink
Expand Anchor version range to <= 0.25.0 (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
kAsky53 authored Jul 13, 2022
1 parent 384facb commit 3d297a7
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 28 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions programs/quarry-merge-mine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quarry-merge-mine"
version = "5.1.0"
version = "5.1.1"
description = "Mines multiple quarries at the same time"
homepage = "https://quarry.so"
repository = "https://github.com/QuarryProtocol/quarry"
Expand All @@ -20,12 +20,12 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = ">=0.22, <=0.24"
anchor-spl = ">=0.22, <=0.24"
quarry-mine = { path = "../quarry-mine", features = ["cpi"], version = "5.0.0" }
anchor-lang = ">=0.22, <=0.25"
anchor-spl = ">=0.22, <=0.25"
quarry-mine = { path = "../quarry-mine", features = ["cpi"], version = "5.1.1" }
quarry-mint-wrapper = { path = "../quarry-mint-wrapper", features = [
"cpi"
], version = "5.0.0" }
], version = "5.1.1" }
num-traits = "0.2"
solana-security-txt = "1.0.1"
vipers = "^2.0"
8 changes: 4 additions & 4 deletions programs/quarry-mine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quarry-mine"
version = "5.1.0"
version = "5.1.1"
description = "Distributes liquidity mining rewards to token stakers"
edition = "2021"
homepage = "https://quarry.so"
Expand All @@ -21,12 +21,12 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = ">=0.22, <=0.24"
anchor-spl = ">=0.22, <=0.24"
anchor-lang = ">=0.22, <=0.25"
anchor-spl = ">=0.22, <=0.25"
num-traits = "0.2.14"
quarry-mint-wrapper = { path = "../quarry-mint-wrapper", features = [
"cpi"
], version = "5.0.0" }
], version = "5.1.1" }
solana-security-txt = "1.0.1"
spl-math = { version = "0.1.0", features = ["no-entrypoint"] }
u128 = "0.1.0"
Expand Down
6 changes: 3 additions & 3 deletions programs/quarry-mint-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quarry-mint-wrapper"
version = "5.1.0"
version = "5.1.1"
description = "Mints tokens to authorized accounts"
edition = "2021"
homepage = "https://quarry.so"
Expand All @@ -20,7 +20,7 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = ">=0.22, <=0.24"
anchor-spl = ">=0.22, <=0.24"
anchor-lang = ">=0.22, <=0.25"
anchor-spl = ">=0.22, <=0.25"
solana-security-txt = "1.0.1"
vipers = "^2.0"
8 changes: 4 additions & 4 deletions programs/quarry-operator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quarry-operator"
version = "5.1.0"
version = "5.1.1"
description = "Delegates Quarry Rewarder authority roles."
edition = "2021"
homepage = "https://quarry.so"
Expand All @@ -20,8 +20,8 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = ">=0.22, <=0.24"
anchor-spl = ">=0.22, <=0.24"
quarry-mine = { path = "../quarry-mine", version = "5.0.0", features = ["cpi"] }
anchor-lang = ">=0.22, <=0.25"
anchor-spl = ">=0.22, <=0.25"
quarry-mine = { path = "../quarry-mine", features = ["cpi"], version = "5.1.1" }
solana-security-txt = "1.0.1"
vipers = "^2.0"
6 changes: 3 additions & 3 deletions programs/quarry-redeemer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quarry-redeemer"
version = "5.1.0"
version = "5.1.1"
description = "Redeems one token for another"
edition = "2021"
homepage = "https://quarry.so"
Expand All @@ -20,7 +20,7 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = ">=0.22, <=0.24"
anchor-spl = ">=0.22, <=0.24"
anchor-lang = ">=0.22, <=0.25"
anchor-spl = ">=0.22, <=0.25"
solana-security-txt = "1.0.1"
vipers = "^2.0"
6 changes: 3 additions & 3 deletions programs/quarry-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quarry-registry"
version = "5.1.0"
version = "5.1.1"
description = "Registry of all quarries associated with a rewarder."
edition = "2021"
homepage = "https://quarry.so"
Expand All @@ -20,7 +20,7 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = ">=0.22, <=0.24"
quarry-mine = { version = "5.0.0", path = "../quarry-mine", features = ["cpi"] }
anchor-lang = ">=0.22, <=0.25"
quarry-mine = { path = "../quarry-mine", features = ["cpi"], version = "5.1.1" }
solana-security-txt = "1.0.1"
vipers = "^2.0"

0 comments on commit 3d297a7

Please # to comment.