From 69d051d4359d46d5a2ea69a6633e3b2ea6d2afe7 Mon Sep 17 00:00:00 2001 From: nickgarfield Date: Mon, 10 Apr 2023 19:20:21 +0000 Subject: [PATCH] Bump from 2.0.5 to 2.0.6 --- Cargo.lock | 24 ++++++++++++------------ VERSION | 2 +- app/Cargo.toml | 12 ++++++------ cli/Cargo.toml | 12 ++++++------ client/Cargo.toml | 10 +++++----- cron/Cargo.toml | 2 +- plugin/Cargo.toml | 10 +++++----- 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, 52 insertions(+), 52 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c0081e6ce..cbef423e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1156,7 +1156,7 @@ dependencies = [ [[package]] name = "clockwork-app" -version = "2.0.5" +version = "2.0.6" dependencies = [ "anchor-lang", "bincode", @@ -1191,7 +1191,7 @@ dependencies = [ [[package]] name = "clockwork-cli" -version = "2.0.5" +version = "2.0.6" dependencies = [ "anchor-lang", "anyhow", @@ -1224,7 +1224,7 @@ dependencies = [ [[package]] name = "clockwork-client" -version = "2.0.5" +version = "2.0.6" dependencies = [ "anchor-lang", "anchor-spl", @@ -1242,7 +1242,7 @@ dependencies = [ [[package]] name = "clockwork-cron" -version = "2.0.5" +version = "2.0.6" dependencies = [ "chrono", "nom", @@ -1251,7 +1251,7 @@ dependencies = [ [[package]] name = "clockwork-network-program" -version = "2.0.5" +version = "2.0.6" dependencies = [ "anchor-lang", "anchor-spl", @@ -1260,7 +1260,7 @@ dependencies = [ [[package]] name = "clockwork-relayer" -version = "2.0.5" +version = "2.0.6" dependencies = [ "actix-cors", "actix-web", @@ -1284,7 +1284,7 @@ dependencies = [ [[package]] name = "clockwork-relayer-api" -version = "2.0.5" +version = "2.0.6" dependencies = [ "bincode", "serde", @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "clockwork-sdk" -version = "2.0.5" +version = "2.0.6" dependencies = [ "anchor-lang", "chrono", @@ -1304,7 +1304,7 @@ dependencies = [ [[package]] name = "clockwork-thread-program" -version = "2.0.5" +version = "2.0.6" dependencies = [ "anchor-lang", "chrono", @@ -1326,7 +1326,7 @@ dependencies = [ [[package]] name = "clockwork-utils" -version = "2.0.5" +version = "2.0.6" dependencies = [ "anchor-lang", "base64 0.13.1", @@ -1337,7 +1337,7 @@ dependencies = [ [[package]] name = "clockwork-webhook-program" -version = "2.0.5" +version = "2.0.6" dependencies = [ "anchor-lang", "clockwork-network-program", @@ -1347,7 +1347,7 @@ dependencies = [ [[package]] name = "clockwork_plugin" -version = "2.0.5" +version = "2.0.6" dependencies = [ "anchor-lang", "async-trait", diff --git a/VERSION b/VERSION index e01025862..157e54f3e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.5 +2.0.6 diff --git a/app/Cargo.toml b/app/Cargo.toml index 7583a6119..0676705d5 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-app" -version = "2.0.5" +version = "2.0.6" edition = "2021" description = "The Clockwork Dashboard" license = "AGPL-3.0-or-later" @@ -17,11 +17,11 @@ bincode = "1.3.3" bytemuck = "1.13.0" chrono = "0.4.23" clockwork-thread-program-v1 = { package = "clockwork-thread-program-v1", path = "../programs/thread/v1", version = "2.0.2", features = ["no-entrypoint"] } -clockwork-thread-program-v2 = { package = "clockwork-thread-program", path = "../programs/thread", version = "2.0.5", features = ["no-entrypoint"] } -clockwork-network-program = { package = "clockwork-network-program", path = "../programs/network", version = "2.0.5", features = ["no-entrypoint"] } -clockwork-relayer-api = { path = "../relayer/api", version = "2.0.5" } -clockwork-cron = { path = "../cron", version = "2.0.5" } -clockwork-utils = { path = "../utils", version = "2.0.5" } +clockwork-thread-program-v2 = { package = "clockwork-thread-program", path = "../programs/thread", version = "2.0.6", features = ["no-entrypoint"] } +clockwork-network-program = { package = "clockwork-network-program", path = "../programs/network", version = "2.0.6", features = ["no-entrypoint"] } +clockwork-relayer-api = { path = "../relayer/api", version = "2.0.6" } +clockwork-cron = { path = "../cron", version = "2.0.6" } +clockwork-utils = { path = "../utils", version = "2.0.6" } dioxus = "0.3.1" dioxus-router = { version = "0.3.0", features = ["web"] } dioxus-web = "0.3.0" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 547c535b6..5fbe0065d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cli" -version = "2.0.5" +version = "2.0.6" description = "Command line interface for Clockwork" edition = "2021" license = "AGPL-3.0-or-later" @@ -15,11 +15,11 @@ anchor-lang = "0.27.0" anyhow = "1.0.61" bincode = "1.3.3" clap = { version = "3.1.2", features = ["derive"] } -clockwork-client = { path = "../client", version = "2.0.5" } -clockwork-cron = { path = "../cron", version = "2.0.5" } -clockwork-relayer-api = { path = "../relayer/api", version = "2.0.5" } -clockwork-utils = { path = "../utils", version = "2.0.5" } -clockwork-webhook-program = { path = "../programs/webhook", version = "2.0.5" } +clockwork-client = { path = "../client", version = "2.0.6" } +clockwork-cron = { path = "../cron", version = "2.0.6" } +clockwork-relayer-api = { path = "../relayer/api", version = "2.0.6" } +clockwork-utils = { path = "../utils", version = "2.0.6" } +clockwork-webhook-program = { path = "../programs/webhook", version = "2.0.6" } chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } dirs-next = "2.0.0" regex = "1.6.0" diff --git a/client/Cargo.toml b/client/Cargo.toml index 5a3815abe..2ca1e4388 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-client" -version = "2.0.5" +version = "2.0.6" edition = "2021" description = "Clockwork client" license = "AGPL-3.0-or-later" @@ -19,10 +19,10 @@ anchor-lang = "0.27.0" anchor-spl = { features = ["mint", "token"], version = "0.27.0" } bincode = "1.3.3" borsh = "0.9.3" -clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "2.0.5" } -clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "2.0.5" } -clockwork-utils = { path = "../utils", version = "2.0.5" } -clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "2.0.5" } +clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "2.0.6" } +clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "2.0.6" } +clockwork-utils = { path = "../utils", version = "2.0.6" } +clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "2.0.6" } solana-client = "~1.14.16" solana-sdk = "~1.14.16" spl-associated-token-account = { version = "1.1.1", features = ["no-entrypoint"] } diff --git a/cron/Cargo.toml b/cron/Cargo.toml index db7517d50..5def430e0 100644 --- a/cron/Cargo.toml +++ b/cron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cron" -version = "2.0.5" +version = "2.0.6" 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 859d96fc1..2e6c74abe 100644 --- a/plugin/Cargo.toml +++ b/plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork_plugin" -version = "2.0.5" +version = "2.0.6" # this needs to match whatever solana uses! rust-version = "1.60.0" edition = "2021" @@ -25,12 +25,12 @@ bincode = "1.3.3" bs58 = "0.4.0" bugsnag = "0.2.1" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } -clockwork-client = { path = "../client", version = "2.0.5" } -clockwork-cron = { path = "../cron", version = "2.0.5" } -clockwork-relayer-api = { path = "../relayer/api", version = "2.0.5" } +clockwork-client = { path = "../client", version = "2.0.6" } +clockwork-cron = { path = "../cron", version = "2.0.6" } +clockwork-relayer-api = { path = "../relayer/api", version = "2.0.6" } clockwork-thread-program = { package = "clockwork-thread-program", path = "../programs/thread" } clockwork-thread-program-v1 = { package = "clockwork-thread-program-v1", path = "../programs/thread/v1" } -clockwork-utils = { path = "../utils", version = "2.0.5" } +clockwork-utils = { path = "../utils", version = "2.0.6" } lazy_static = "1.4.0" log = "0.4" prost = "0.10.0" diff --git a/programs/network/Cargo.toml b/programs/network/Cargo.toml index 33420a4e1..bec8201b3 100644 --- a/programs/network/Cargo.toml +++ b/programs/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-network-program" -version = "2.0.5" +version = "2.0.6" description = "Clockwork networking protocol" edition = "2021" license = "AGPL-3.0-or-later" @@ -24,4 +24,4 @@ default = [] [dependencies] anchor-lang = "0.27.0" anchor-spl = { features = ["mint", "token"], version = "0.27.0" } -clockwork-utils = { path = "../../utils", version = "2.0.5" } +clockwork-utils = { path = "../../utils", version = "2.0.6" } diff --git a/programs/thread/Cargo.toml b/programs/thread/Cargo.toml index f9356e1a5..8468910e3 100644 --- a/programs/thread/Cargo.toml +++ b/programs/thread/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-thread-program" -version = "2.0.5" +version = "2.0.6" description = "Clockwork thread program" edition = "2021" license = "AGPL-3.0-or-later" @@ -24,9 +24,9 @@ default = [] [dependencies] anchor-lang = "0.27.0" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } -clockwork-cron = { path = "../../cron", version = "2.0.5" } -clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.5" } +clockwork-cron = { path = "../../cron", version = "2.0.6" } +clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.6" } clockwork-thread-program-v1 = { path = "v1" } -clockwork-utils = { path = "../../utils", version = "2.0.5" } +clockwork-utils = { path = "../../utils", version = "2.0.6" } static-pubkey = "1.0.3" version = "3.0.0" diff --git a/programs/webhook/Cargo.toml b/programs/webhook/Cargo.toml index d4a523f2f..030f30e2b 100644 --- a/programs/webhook/Cargo.toml +++ b/programs/webhook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-webhook-program" -version = "2.0.5" +version = "2.0.6" 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.5" } -clockwork-utils = { path = "../../utils", version = "2.0.5" } +clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.6" } +clockwork-utils = { path = "../../utils", version = "2.0.6" } serde = "1.0.152" diff --git a/relayer/Cargo.toml b/relayer/Cargo.toml index 8a328332f..5caa62d86 100644 --- a/relayer/Cargo.toml +++ b/relayer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-relayer" -version = "2.0.5" +version = "2.0.6" 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.5" } -clockwork-relayer-api = { path = "api", version = "2.0.5" } +clockwork-webhook-program = { path = "../programs/webhook", version = "2.0.6" } +clockwork-relayer-api = { path = "api", version = "2.0.6" } 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 25d0f6242..822053c3c 100644 --- a/relayer/api/Cargo.toml +++ b/relayer/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-relayer-api" -version = "2.0.5" +version = "2.0.6" 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 edc3d20d1..48a47daad 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-sdk" -version = "2.0.5" +version = "2.0.6" 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.5" } +clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "2.0.6" } nom = "~7" once_cell = "1.5.2" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index a95182fc7..3ed6711e5 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-utils" -version = "2.0.5" +version = "2.0.6" description = "Tools for building blocks on Solana" edition = "2021" license = "AGPL-3.0-or-later"