From a04ce4e2fd4d6b23abed6c15bbbeebeed67701aa Mon Sep 17 00:00:00 2001 From: nickgarfield Date: Tue, 2 May 2023 19:14:12 +0000 Subject: [PATCH] Bump from v2.0.16 to v2.0.17 --- Cargo.lock | 22 +++++++++++----------- OLD_VERSION | 2 +- VERSION | 2 +- cli/Cargo.toml | 16 ++++++++-------- cron/Cargo.toml | 2 +- plugin/Cargo.toml | 16 ++++++++-------- plugin/utils/Cargo.toml | 2 +- programs/network/Cargo.toml | 4 ++-- programs/thread/Cargo.toml | 8 ++++---- programs/webhook/Cargo.toml | 6 +++--- relayer/Cargo.toml | 6 +++--- relayer/api/Cargo.toml | 2 +- sdk/Cargo.toml | 4 ++-- utils/Cargo.toml | 2 +- 14 files changed, 47 insertions(+), 47 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 12aed9ba8..e118db190 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1092,7 +1092,7 @@ dependencies = [ [[package]] name = "clockwork-cli" -version = "2.0.16" +version = "2.0.17" dependencies = [ "anchor-lang", "anchor-spl", @@ -1130,7 +1130,7 @@ dependencies = [ [[package]] name = "clockwork-cron" -version = "2.0.16" +version = "2.0.17" dependencies = [ "chrono", "nom", @@ -1139,7 +1139,7 @@ dependencies = [ [[package]] name = "clockwork-network-program" -version = "2.0.16" +version = "2.0.17" dependencies = [ "anchor-lang", "anchor-spl", @@ -1149,7 +1149,7 @@ dependencies = [ [[package]] name = "clockwork-plugin-utils" -version = "2.0.16" +version = "2.0.17" dependencies = [ "serde", "serde_json", @@ -1158,7 +1158,7 @@ dependencies = [ [[package]] name = "clockwork-relayer" -version = "2.0.16" +version = "2.0.17" dependencies = [ "actix-cors", "actix-web", @@ -1182,7 +1182,7 @@ dependencies = [ [[package]] name = "clockwork-relayer-api" -version = "2.0.16" +version = "2.0.17" dependencies = [ "bincode", "serde", @@ -1191,7 +1191,7 @@ dependencies = [ [[package]] name = "clockwork-sdk" -version = "2.0.16" +version = "2.0.17" dependencies = [ "anchor-lang", "chrono", @@ -1202,7 +1202,7 @@ dependencies = [ [[package]] name = "clockwork-thread-program" -version = "2.0.16" +version = "2.0.17" dependencies = [ "anchor-lang", "chrono", @@ -1225,7 +1225,7 @@ dependencies = [ [[package]] name = "clockwork-utils" -version = "2.0.16" +version = "2.0.17" dependencies = [ "anchor-lang", "base64 0.13.1", @@ -1236,7 +1236,7 @@ dependencies = [ [[package]] name = "clockwork-webhook-program" -version = "2.0.16" +version = "2.0.17" dependencies = [ "anchor-lang", "clockwork-network-program", @@ -1246,7 +1246,7 @@ dependencies = [ [[package]] name = "clockwork_plugin" -version = "2.0.16" +version = "2.0.17" dependencies = [ "anchor-lang", "async-trait", diff --git a/OLD_VERSION b/OLD_VERSION index b8061b50d..a14da2902 100644 --- a/OLD_VERSION +++ b/OLD_VERSION @@ -1 +1 @@ -2.0.15 +2.0.16 diff --git a/VERSION b/VERSION index a14da2902..a6e7bcb30 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.16 +2.0.17 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ddb1c9b5f..6c3e33860 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cli" -version = "2.0.16" +version = "2.0.17" description = "Command line interface for Clockwork" edition = "2021" license = "AGPL-3.0-or-later" @@ -18,13 +18,13 @@ anyhow = "1.0.61" bincode = "1.3.3" bzip2 = "0.4" clap = { version = "3.1.2", features = ["derive"] } -clockwork-cron = { path = "../cron", version = "=2.0.16" } -clockwork-network-program = { path = "../programs/network", version = "=2.0.16", features = ["no-entrypoint"] } -clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.16" } -clockwork-plugin-utils= { path = "../plugin/utils", version = "=2.0.16" } -clockwork-thread-program = { path = "../programs/thread", version = "=2.0.16", features = ["no-entrypoint"] } -clockwork-utils = { path = "../utils", version = "=2.0.16" } -clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.16", features = ["no-entrypoint"] } +clockwork-cron = { path = "../cron", version = "=2.0.17" } +clockwork-network-program = { path = "../programs/network", version = "=2.0.17", features = ["no-entrypoint"] } +clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.17" } +clockwork-plugin-utils= { path = "../plugin/utils", version = "=2.0.17" } +clockwork-thread-program = { path = "../programs/thread", version = "=2.0.17", features = ["no-entrypoint"] } +clockwork-utils = { path = "../utils", version = "=2.0.17" } +clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.17", features = ["no-entrypoint"] } chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } dirs-next = "2.0.0" indicatif = "0.16" diff --git a/cron/Cargo.toml b/cron/Cargo.toml index cd1fbcbb7..4242f5c3e 100644 --- a/cron/Cargo.toml +++ b/cron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cron" -version = "2.0.16" +version = "2.0.17" description = "A cron expression parser that's safe to use in the Solana runtime" edition = "2021" license = "AGPL-3.0-or-later" diff --git a/plugin/Cargo.toml b/plugin/Cargo.toml index ebf964921..55e3dd2c5 100644 --- a/plugin/Cargo.toml +++ b/plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork_plugin" -version = "2.0.16" +version = "2.0.17" # this needs to match whatever solana uses! rust-version = "1.60.0" edition = "2021" @@ -26,14 +26,14 @@ bincode = "1.3.3" bs58 = "0.4.0" bugsnag = "0.2.1" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } -clockwork-cron = { path = "../cron", version = "=2.0.16" } -clockwork-network-program = { path = "../programs/network", version = "=2.0.16" } -clockwork-plugin-utils = { path = "utils", version = "=2.0.16" } -clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.16" } -clockwork-thread-program = { package = "clockwork-thread-program", path = "../programs/thread", version = "=2.0.16" } +clockwork-cron = { path = "../cron", version = "=2.0.17" } +clockwork-network-program = { path = "../programs/network", version = "=2.0.17" } +clockwork-plugin-utils = { path = "utils", version = "=2.0.17" } +clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.17" } +clockwork-thread-program = { package = "clockwork-thread-program", path = "../programs/thread", version = "=2.0.17" } clockwork-thread-program-v1 = { package = "clockwork-thread-program-v1", path = "../programs/thread/v1", version = "=1.4.4" } -clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.16" } -clockwork-utils = { path = "../utils", version = "=2.0.16" } +clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.17" } +clockwork-utils = { path = "../utils", version = "=2.0.17" } lazy_static = "1.4.0" log = "0.4" prost = "0.10.0" diff --git a/plugin/utils/Cargo.toml b/plugin/utils/Cargo.toml index 49406538d..b06a3835b 100644 --- a/plugin/utils/Cargo.toml +++ b/plugin/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-plugin-utils" -version = "2.0.16" +version = "2.0.17" edition = "2021" description = "Clockwork Plugin Utils" license = "AGPL-3.0-or-later" diff --git a/programs/network/Cargo.toml b/programs/network/Cargo.toml index a4ab2ab66..8e734519d 100644 --- a/programs/network/Cargo.toml +++ b/programs/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-network-program" -version = "2.0.16" +version = "2.0.17" description = "Clockwork networking protocol" edition = "2021" license = "AGPL-3.0-or-later" @@ -24,5 +24,5 @@ default = [] [dependencies] anchor-lang = "0.27.0" anchor-spl = { features = ["mint", "token"], version = "0.27.0" } -clockwork-utils = { path = "../../utils", version = "=2.0.16" } +clockwork-utils = { path = "../../utils", version = "=2.0.17" } winnow = "=0.4.1" diff --git a/programs/thread/Cargo.toml b/programs/thread/Cargo.toml index 40d124fed..26444929c 100644 --- a/programs/thread/Cargo.toml +++ b/programs/thread/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-thread-program" -version = "2.0.16" +version = "2.0.17" description = "Clockwork thread program" edition = "2021" license = "AGPL-3.0-or-later" @@ -24,10 +24,10 @@ default = [] [dependencies] anchor-lang = "0.27.0" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } -clockwork-cron = { path = "../../cron", version = "=2.0.16" } -clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.16" } +clockwork-cron = { path = "../../cron", version = "=2.0.17" } +clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.17" } clockwork-thread-program-v1 = { path = "v1", version = "=1.4.4" } -clockwork-utils = { path = "../../utils", version = "=2.0.16" } +clockwork-utils = { path = "../../utils", version = "=2.0.17" } pyth-sdk-solana = "0.7.1" static-pubkey = "1.0.3" version = "3.0.0" diff --git a/programs/webhook/Cargo.toml b/programs/webhook/Cargo.toml index 1789715be..8b62bd410 100644 --- a/programs/webhook/Cargo.toml +++ b/programs/webhook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-webhook-program" -version = "2.0.16" +version = "2.0.17" description = "Clockwork webhook program" edition = "2021" license = "AGPL-3.0-or-later" @@ -23,6 +23,6 @@ default = [] [dependencies] anchor-lang = { features = ["init-if-needed"], version = "0.27.0" } -clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.16" } -clockwork-utils = { path = "../../utils", version = "=2.0.16" } +clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.17" } +clockwork-utils = { path = "../../utils", version = "=2.0.17" } serde = "1.0.152" diff --git a/relayer/Cargo.toml b/relayer/Cargo.toml index 90085da1c..306bdb4da 100644 --- a/relayer/Cargo.toml +++ b/relayer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-relayer" -version = "2.0.16" +version = "2.0.17" edition = "2021" description = "Clockwork relayer for webhook requests" license = "AGPL-3.0-or-later" @@ -18,8 +18,8 @@ actix-cors = "0.6.4" actix-web = "4.3.1" anchor-lang = "0.27.0" byte-unit = "4.0.18" -clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.16" } -clockwork-relayer-api = { path = "api", version = "=2.0.16" } +clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.17" } +clockwork-relayer-api = { path = "api", version = "=2.0.17" } curve25519-dalek = "3.2.1" lazy_static = "1.4.0" reqwest = "0.11.14" diff --git a/relayer/api/Cargo.toml b/relayer/api/Cargo.toml index ccebf5882..2728a978b 100644 --- a/relayer/api/Cargo.toml +++ b/relayer/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-relayer-api" -version = "2.0.16" +version = "2.0.17" edition = "2021" description = "Clockwork relayer for webhook requests" license = "AGPL-3.0-or-later" diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index e22ab723a..760ffc07a 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-sdk" -version = "2.0.16" +version = "2.0.17" description = "An SDK for building automated programs on Solana" edition = "2021" license = "AGPL-3.0-or-later" @@ -16,7 +16,7 @@ name = "clockwork_sdk" [dependencies] anchor-lang = "0.27.0" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } -clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "=2.0.16" } +clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "=2.0.17" } nom = "~7" once_cell = "1.5.2" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 11bd7a9a5..4ba7df1c9 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-utils" -version = "2.0.16" +version = "2.0.17" description = "Tools for building blocks on Solana" edition = "2021" license = "AGPL-3.0-or-later"