From 04f484abe6704e36894fe161b2671f8f569d1484 Mon Sep 17 00:00:00 2001 From: michaelhly Date: Tue, 29 Mar 2022 13:35:48 -0500 Subject: [PATCH] v4.1.0 --- Cargo.lock | 12 ++++++------ package.json | 2 +- programs/quarry-merge-mine/Cargo.toml | 6 +++--- programs/quarry-mine/Cargo.toml | 4 ++-- programs/quarry-mint-wrapper/Cargo.toml | 2 +- programs/quarry-operator/Cargo.toml | 4 ++-- programs/quarry-redeemer/Cargo.toml | 2 +- programs/quarry-registry/Cargo.toml | 4 ++-- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 90c8d5b4..b1939b8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -932,7 +932,7 @@ dependencies = [ [[package]] name = "quarry-merge-mine" -version = "4.0.0" +version = "4.1.0" dependencies = [ "anchor-lang", "anchor-spl", @@ -944,7 +944,7 @@ dependencies = [ [[package]] name = "quarry-mine" -version = "4.0.1" +version = "4.1.0" dependencies = [ "anchor-lang", "anchor-spl", @@ -958,7 +958,7 @@ dependencies = [ [[package]] name = "quarry-mint-wrapper" -version = "4.0.0" +version = "4.1.0" dependencies = [ "anchor-lang", "anchor-spl", @@ -967,7 +967,7 @@ dependencies = [ [[package]] name = "quarry-operator" -version = "4.0.0" +version = "4.1.0" dependencies = [ "anchor-lang", "anchor-spl", @@ -977,7 +977,7 @@ dependencies = [ [[package]] name = "quarry-redeemer" -version = "4.0.0" +version = "4.1.0" dependencies = [ "anchor-lang", "anchor-spl", @@ -986,7 +986,7 @@ dependencies = [ [[package]] name = "quarry-registry" -version = "4.0.0" +version = "4.1.0" dependencies = [ "anchor-lang", "quarry-mine", diff --git a/package.json b/package.json index 17170223..ebbd79c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@quarryprotocol/quarry-sdk", - "version": "4.0.0", + "version": "4.1.0", "description": "Quarry Protocol SDK", "keywords": [ "solana", diff --git a/programs/quarry-merge-mine/Cargo.toml b/programs/quarry-merge-mine/Cargo.toml index 700d29c9..2aead6e1 100644 --- a/programs/quarry-merge-mine/Cargo.toml +++ b/programs/quarry-merge-mine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quarry-merge-mine" -version = "4.0.0" +version = "4.1.0" description = "Mines multiple quarries at the same time" homepage = "https://quarry.so" repository = "https://github.com/QuarryProtocol/quarry" @@ -22,9 +22,9 @@ default = [] [dependencies] anchor-lang = ">=0.22, <0.24" anchor-spl = ">=0.22, <0.24" -quarry-mine = { path = "../quarry-mine", features = ["cpi"], version = "4.0.0" } +quarry-mine = { path = "../quarry-mine", features = ["cpi"], version = "4.1.0" } quarry-mint-wrapper = { path = "../quarry-mint-wrapper", features = [ "cpi" -], version = "4.0.0" } +], version = "4.1.0" } num-traits = "0.2" vipers = "^2.0" diff --git a/programs/quarry-mine/Cargo.toml b/programs/quarry-mine/Cargo.toml index 2a37c727..3b2daa85 100644 --- a/programs/quarry-mine/Cargo.toml +++ b/programs/quarry-mine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quarry-mine" -version = "4.0.1" +version = "4.1.0" description = "Distributes liquidity mining rewards to token stakers" edition = "2021" homepage = "https://quarry.so" @@ -25,7 +25,7 @@ anchor-spl = ">=0.22, <0.24" num-traits = "0.2.14" quarry-mint-wrapper = { path = "../quarry-mint-wrapper", features = [ "cpi" -], version = "4.0.0" } +], version = "4.1.0" } spl-math = { version = "0.1.0", features = ["no-entrypoint"] } vipers = "^2.0" diff --git a/programs/quarry-mint-wrapper/Cargo.toml b/programs/quarry-mint-wrapper/Cargo.toml index 80a49e9c..a9a5384d 100644 --- a/programs/quarry-mint-wrapper/Cargo.toml +++ b/programs/quarry-mint-wrapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quarry-mint-wrapper" -version = "4.0.0" +version = "4.1.0" description = "Mints tokens to authorized accounts" edition = "2021" homepage = "https://quarry.so" diff --git a/programs/quarry-operator/Cargo.toml b/programs/quarry-operator/Cargo.toml index ef603fff..e581b8e1 100644 --- a/programs/quarry-operator/Cargo.toml +++ b/programs/quarry-operator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quarry-operator" -version = "4.0.0" +version = "4.1.0" description = "Delegates Quarry Rewarder authority roles." edition = "2021" homepage = "https://quarry.so" @@ -22,5 +22,5 @@ default = [] [dependencies] anchor-lang = ">=0.22, <0.24" anchor-spl = ">=0.22, <0.24" -quarry-mine = { path = "../quarry-mine", version = "4.0.0", features = ["cpi"] } +quarry-mine = { path = "../quarry-mine", version = "4.1.0", features = ["cpi"] } vipers = "^2.0" diff --git a/programs/quarry-redeemer/Cargo.toml b/programs/quarry-redeemer/Cargo.toml index d8f44871..4d376ce7 100644 --- a/programs/quarry-redeemer/Cargo.toml +++ b/programs/quarry-redeemer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quarry-redeemer" -version = "4.0.0" +version = "4.1.0" description = "Redeems one token for another" edition = "2021" homepage = "https://quarry.so" diff --git a/programs/quarry-registry/Cargo.toml b/programs/quarry-registry/Cargo.toml index a62d73a7..f3e7f0e9 100644 --- a/programs/quarry-registry/Cargo.toml +++ b/programs/quarry-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quarry-registry" -version = "4.0.0" +version = "4.1.0" description = "Registry of all quarries associated with a rewarder." edition = "2021" homepage = "https://quarry.so" @@ -21,5 +21,5 @@ default = [] [dependencies] anchor-lang = ">=0.22, <0.24" -quarry-mine = { version = "4.0.0", path = "../quarry-mine", features = ["cpi"] } +quarry-mine = { version = "4.1.0", path = "../quarry-mine", features = ["cpi"] } vipers = "^2.0"