diff --git a/Cargo.lock b/Cargo.lock index 552b4e23b..68b569be6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1156,7 +1156,7 @@ dependencies = [ [[package]] name = "clockwork-app" -version = "2.0.3" +version = "2.0.4" dependencies = [ "anchor-lang", "bincode", @@ -1191,7 +1191,7 @@ dependencies = [ [[package]] name = "clockwork-cli" -version = "2.0.3" +version = "2.0.4" dependencies = [ "anchor-lang", "anyhow", @@ -1224,7 +1224,7 @@ dependencies = [ [[package]] name = "clockwork-client" -version = "2.0.3" +version = "2.0.4" dependencies = [ "anchor-lang", "anchor-spl", @@ -1242,7 +1242,7 @@ dependencies = [ [[package]] name = "clockwork-cron" -version = "2.0.3" +version = "2.0.4" dependencies = [ "chrono", "nom", @@ -1251,7 +1251,7 @@ dependencies = [ [[package]] name = "clockwork-network-program" -version = "2.0.3" +version = "2.0.4" dependencies = [ "anchor-lang", "anchor-spl", @@ -1260,7 +1260,7 @@ dependencies = [ [[package]] name = "clockwork-relayer" -version = "2.0.3" +version = "2.0.4" dependencies = [ "actix-cors", "actix-web", @@ -1284,7 +1284,7 @@ dependencies = [ [[package]] name = "clockwork-relayer-api" -version = "2.0.3" +version = "2.0.4" dependencies = [ "bincode", "serde", @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "clockwork-sdk" -version = "2.0.3" +version = "2.0.4" dependencies = [ "anchor-lang", "chrono", @@ -1304,7 +1304,7 @@ dependencies = [ [[package]] name = "clockwork-thread-program" -version = "2.0.3" +version = "2.0.4" dependencies = [ "anchor-lang", "chrono", @@ -1326,7 +1326,7 @@ dependencies = [ [[package]] name = "clockwork-utils" -version = "2.0.3" +version = "2.0.4" dependencies = [ "anchor-lang", "base64 0.13.1", @@ -1337,7 +1337,7 @@ dependencies = [ [[package]] name = "clockwork-webhook-program" -version = "2.0.3" +version = "2.0.4" dependencies = [ "anchor-lang", "clockwork-network-program", @@ -1347,7 +1347,7 @@ dependencies = [ [[package]] name = "clockwork_plugin" -version = "2.0.3" +version = "2.0.4" dependencies = [ "anchor-lang", "async-trait", diff --git a/VERSION b/VERSION index 50ffc5aa7..2165f8f9b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.3 +2.0.4 diff --git a/app/Cargo.toml b/app/Cargo.toml index 91c20a2bf..cd5a28d53 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-app" -version = "2.0.3" +version = "2.0.4" 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.3", features = ["no-entrypoint"] } -clockwork-network-program = { package = "clockwork-network-program", path = "../programs/network", version = "2.0.3", features = ["no-entrypoint"] } -clockwork-relayer-api = { path = "../relayer/api", version = "2.0.3" } -clockwork-cron = { path = "../cron", version = "2.0.3" } -clockwork-utils = { path = "../utils", version = "2.0.3" } +clockwork-thread-program-v2 = { package = "clockwork-thread-program", path = "../programs/thread", version = "2.0.4", features = ["no-entrypoint"] } +clockwork-network-program = { package = "clockwork-network-program", path = "../programs/network", version = "2.0.4", features = ["no-entrypoint"] } +clockwork-relayer-api = { path = "../relayer/api", version = "2.0.4" } +clockwork-cron = { path = "../cron", version = "2.0.4" } +clockwork-utils = { path = "../utils", version = "2.0.4" } 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 b5d427a5f..b67b235df 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cli" -version = "2.0.3" +version = "2.0.4" 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.3" } -clockwork-cron = { path = "../cron", version = "2.0.3" } -clockwork-relayer-api = { path = "../relayer/api", version = "2.0.3" } -clockwork-utils = { path = "../utils", version = "2.0.3" } -clockwork-webhook-program = { path = "../programs/webhook", version = "2.0.3" } +clockwork-client = { path = "../client", version = "2.0.4" } +clockwork-cron = { path = "../cron", version = "2.0.4" } +clockwork-relayer-api = { path = "../relayer/api", version = "2.0.4" } +clockwork-utils = { path = "../utils", version = "2.0.4" } +clockwork-webhook-program = { path = "../programs/webhook", version = "2.0.4" } 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 88d992f13..0b3ac8eb4 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-client" -version = "2.0.3" +version = "2.0.4" 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.3" } -clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "2.0.3" } -clockwork-utils = { path = "../utils", version = "2.0.3" } -clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "2.0.3" } +clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "2.0.4" } +clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "2.0.4" } +clockwork-utils = { path = "../utils", version = "2.0.4" } +clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "2.0.4" } 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 e9376b48f..c0df3c62f 100644 --- a/cron/Cargo.toml +++ b/cron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cron" -version = "2.0.3" +version = "2.0.4" 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 d407aec98..364367a71 100644 --- a/plugin/Cargo.toml +++ b/plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork_plugin" -version = "2.0.3" +version = "2.0.4" # 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.3" } -clockwork-cron = { path = "../cron", version = "2.0.3" } -clockwork-relayer-api = { path = "../relayer/api", version = "2.0.3" } +clockwork-client = { path = "../client", version = "2.0.4" } +clockwork-cron = { path = "../cron", version = "2.0.4" } +clockwork-relayer-api = { path = "../relayer/api", version = "2.0.4" } 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.3" } +clockwork-utils = { path = "../utils", version = "2.0.4" } 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 35674cd2a..57f56a012 100644 --- a/programs/network/Cargo.toml +++ b/programs/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-network-program" -version = "2.0.3" +version = "2.0.4" 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.3" } +clockwork-utils = { path = "../../utils", version = "2.0.4" } diff --git a/programs/thread/Cargo.toml b/programs/thread/Cargo.toml index 3d8fee9ed..99ceca7ab 100644 --- a/programs/thread/Cargo.toml +++ b/programs/thread/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-thread-program" -version = "2.0.3" +version = "2.0.4" 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.3" } -clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.3" } +clockwork-cron = { path = "../../cron", version = "2.0.4" } +clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.4" } clockwork-thread-program-v1 = { path = "v1" } -clockwork-utils = { path = "../../utils", version = "2.0.3" } +clockwork-utils = { path = "../../utils", version = "2.0.4" } static-pubkey = "1.0.3" version = "3.0.0" diff --git a/programs/webhook/Cargo.toml b/programs/webhook/Cargo.toml index 4ee1ca3d9..f5f902694 100644 --- a/programs/webhook/Cargo.toml +++ b/programs/webhook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-webhook-program" -version = "2.0.3" +version = "2.0.4" 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.3" } -clockwork-utils = { path = "../../utils", version = "2.0.3" } +clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.4" } +clockwork-utils = { path = "../../utils", version = "2.0.4" } serde = "1.0.152" diff --git a/relayer/Cargo.toml b/relayer/Cargo.toml index 56b785300..4d481fd59 100644 --- a/relayer/Cargo.toml +++ b/relayer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-relayer" -version = "2.0.3" +version = "2.0.4" 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.3" } -clockwork-relayer-api = { path = "api", version = "2.0.3" } +clockwork-webhook-program = { path = "../programs/webhook", version = "2.0.4" } +clockwork-relayer-api = { path = "api", version = "2.0.4" } 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 b8bd703b6..7d8d1f7d9 100644 --- a/relayer/api/Cargo.toml +++ b/relayer/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-relayer-api" -version = "2.0.3" +version = "2.0.4" 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 aaeced5e0..b1827a552 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-sdk" -version = "2.0.3" +version = "2.0.4" 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.3" } +clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "2.0.4" } nom = "~7" once_cell = "1.5.2" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 83866e3ca..dfd8e9a9d 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-utils" -version = "2.0.3" +version = "2.0.4" description = "Tools for building blocks on Solana" edition = "2021" license = "AGPL-3.0-or-later"