diff --git a/Cargo.lock b/Cargo.lock index 60db78640..1e259dea7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -763,7 +763,7 @@ dependencies = [ [[package]] name = "clockwork-cli" -version = "1.3.14" +version = "1.3.15" dependencies = [ "anyhow", "cargo_toml", @@ -791,7 +791,7 @@ dependencies = [ [[package]] name = "clockwork-client" -version = "1.3.14" +version = "1.3.15" dependencies = [ "anchor-lang", "anchor-spl", @@ -809,7 +809,7 @@ dependencies = [ [[package]] name = "clockwork-cron" -version = "1.3.14" +version = "1.3.15" dependencies = [ "chrono", "nom", @@ -818,7 +818,7 @@ dependencies = [ [[package]] name = "clockwork-network-program" -version = "1.3.14" +version = "1.3.15" dependencies = [ "anchor-lang", "anchor-spl", @@ -827,7 +827,7 @@ dependencies = [ [[package]] name = "clockwork-sdk" -version = "1.3.14" +version = "1.3.15" dependencies = [ "anchor-lang", "chrono", @@ -838,7 +838,7 @@ dependencies = [ [[package]] name = "clockwork-thread-program" -version = "1.3.14" +version = "1.3.15" dependencies = [ "anchor-lang", "chrono", @@ -851,7 +851,7 @@ dependencies = [ [[package]] name = "clockwork-utils" -version = "1.3.14" +version = "1.3.15" dependencies = [ "anchor-lang", "base64 0.13.1", @@ -860,7 +860,7 @@ dependencies = [ [[package]] name = "clockwork-webhook-program" -version = "1.3.14" +version = "1.3.15" dependencies = [ "anchor-lang", "clockwork-network-program", @@ -868,7 +868,7 @@ dependencies = [ [[package]] name = "clockwork_plugin" -version = "1.3.14" +version = "1.3.15" dependencies = [ "anchor-lang", "bincode", diff --git a/VERSION b/VERSION index 085c0f266..5bdcf5c39 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.14 +1.3.15 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bb52aa221..700a2ca01 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cli" -version = "1.3.14" +version = "1.3.15" description = "Command line interface for Clockwork" edition = "2021" license = "AGPL-3.0-or-later" @@ -13,9 +13,9 @@ keywords = ["solana"] [dependencies] anyhow = "1.0.61" clap = { version = "3.1.2", features = ["derive"] } -clockwork-client = { path = "../client", version = "1.3.14" } +clockwork-client = { path = "../client", version = "1.3.15" } clockwork-cron = { path = "../cron", version = "1.2.12" } -clockwork-utils = { path = "../utils", version = "1.3.14" } +clockwork-utils = { path = "../utils", version = "1.3.15" } 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 9e6d09adc..e1cad14fb 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-client" -version = "1.3.14" +version = "1.3.15" edition = "2021" description = "Clockwork client" license = "AGPL-3.0-or-later" @@ -19,10 +19,10 @@ anchor-lang = "0.25.0" anchor-spl = { features = ["mint", "token"], version = "0.25.0" } bincode = "1.3.3" borsh = "0.9.3" -clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "1.3.14" } -clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "1.3.14" } -clockwork-utils = { path = "../utils", version = "1.3.14" } -clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "1.3.14" } +clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "1.3.15" } +clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "1.3.15" } +clockwork-utils = { path = "../utils", version = "1.3.15" } +clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "1.3.15" } solana-client = "=1.13.4" solana-sdk = "=1.13.4" spl-associated-token-account = { version = "1.1.1", features = ["no-entrypoint"] } diff --git a/cron/Cargo.toml b/cron/Cargo.toml index 7d3f55cc3..b46881c80 100644 --- a/cron/Cargo.toml +++ b/cron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cron" -version = "1.3.14" +version = "1.3.15" 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 8ec6dafa3..80d0955bb 100644 --- a/plugin/Cargo.toml +++ b/plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork_plugin" -version = "1.3.14" +version = "1.3.15" edition = "2021" description = "Clockwork plugin for Solana validators" license = "AGPL-3.0-or-later" @@ -20,9 +20,9 @@ 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 = "1.3.14" } -clockwork-cron = { path = "../cron", version = "1.3.14" } -clockwork-utils = { path = "../utils", version = "1.3.14" } +clockwork-client = { path = "../client", version = "1.3.15" } +clockwork-cron = { path = "../cron", version = "1.3.15" } +clockwork-utils = { path = "../utils", version = "1.3.15" } dashmap = "5.3.3" log = "0.4" prost = "0.10.0" diff --git a/programs/network/Cargo.toml b/programs/network/Cargo.toml index 25cdc986f..0c42c800b 100644 --- a/programs/network/Cargo.toml +++ b/programs/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-network-program" -version = "1.3.14" +version = "1.3.15" description = "Clockwork networking protocol" edition = "2021" license = "AGPL-3.0-or-later" @@ -24,4 +24,4 @@ default = [] [dependencies] anchor-lang = "0.25.0" anchor-spl = { features = ["mint", "token"], version = "0.25.0" } -clockwork-utils = { path = "../../utils", version = "1.3.14" } +clockwork-utils = { path = "../../utils", version = "1.3.15" } diff --git a/programs/thread/Cargo.toml b/programs/thread/Cargo.toml index edb1fca02..0203cfa4a 100644 --- a/programs/thread/Cargo.toml +++ b/programs/thread/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-thread-program" -version = "1.3.14" +version = "1.3.15" description = "Clockwork thread program" edition = "2021" license = "AGPL-3.0-or-later" @@ -24,8 +24,8 @@ default = [] [dependencies] anchor-lang = "0.25.0" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } -clockwork-cron = { path = "../../cron", version = "1.3.14" } -clockwork-network-program = { path = "../network", features = ["cpi"], version = "1.3.14" } -clockwork-utils = { path = "../../utils", version = "1.3.14" } +clockwork-cron = { path = "../../cron", version = "1.3.15" } +clockwork-network-program = { path = "../network", features = ["cpi"], version = "1.3.15" } +clockwork-utils = { path = "../../utils", version = "1.3.15" } static-pubkey = "1.0.3" version = "3.0.0" diff --git a/programs/webhook/Cargo.toml b/programs/webhook/Cargo.toml index 1e44b9e28..8e942170e 100644 --- a/programs/webhook/Cargo.toml +++ b/programs/webhook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-webhook-program" -version = "1.3.14" +version = "1.3.15" description = "Clockwork webhook program" edition = "2021" license = "AGPL-3.0-or-later" @@ -23,4 +23,4 @@ default = [] [dependencies] anchor-lang = { features = ["init-if-needed"], version = "0.25.0" } -clockwork-network-program = { path = "../network", features = ["cpi"], version = "1.3.14" } \ No newline at end of file +clockwork-network-program = { path = "../network", features = ["cpi"], version = "1.3.15" } \ No newline at end of file diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 40932c6cf..c5d39f2af 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-sdk" -version = "1.3.14" +version = "1.3.15" description = "An SDK for building dapps with the Clockwork automation engine" edition = "2021" license = "AGPL-3.0-or-later" @@ -16,7 +16,7 @@ name = "clockwork_sdk" [dependencies] anchor-lang = "0.25.0" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } -clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "1.3.14" } +clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "1.3.15" } nom = "~7" once_cell = "1.5.2" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index a8fbcd5fb..c4068bed4 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-utils" -version = "1.3.14" +version = "1.3.15" description = "Tools for building blocks on Solana" edition = "2021" license = "AGPL-3.0-or-later"