diff --git a/Cargo.lock b/Cargo.lock index df2bb0025..868dd84bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -781,7 +781,7 @@ dependencies = [ [[package]] name = "clockwork-cli" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anchor-lang", "anyhow", @@ -789,8 +789,8 @@ dependencies = [ "chrono", "clap 3.2.22", "clockwork-client", - "clockwork-cron 2.0.0", - "clockwork-utils 2.0.0", + "clockwork-cron 2.0.1", + "clockwork-utils 2.0.1", "dirs-next", "regex", "serde", @@ -810,15 +810,15 @@ dependencies = [ [[package]] name = "clockwork-client" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anchor-lang", "anchor-spl", "bincode", "borsh", - "clockwork-network-program 2.0.0", - "clockwork-thread-program 2.0.0", - "clockwork-utils 2.0.0", + "clockwork-network-program 2.0.1", + "clockwork-thread-program 2.0.1", + "clockwork-utils 2.0.1", "clockwork-webhook-program", "solana-client", "solana-sdk", @@ -839,7 +839,7 @@ dependencies = [ [[package]] name = "clockwork-cron" -version = "2.0.0" +version = "2.0.1" dependencies = [ "chrono", "nom", @@ -848,7 +848,7 @@ dependencies = [ [[package]] name = "clockwork-macros" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anchor-syn", "proc-macro2 1.0.46", @@ -869,20 +869,20 @@ dependencies = [ [[package]] name = "clockwork-network-program" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anchor-lang", "anchor-spl", - "clockwork-utils 2.0.0", + "clockwork-utils 2.0.1", ] [[package]] name = "clockwork-sdk" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anchor-lang", "chrono", - "clockwork-thread-program 2.0.0", + "clockwork-thread-program 2.0.1", "nom", "once_cell", ] @@ -904,13 +904,13 @@ dependencies = [ [[package]] name = "clockwork-thread-program" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anchor-lang", "chrono", - "clockwork-cron 2.0.0", - "clockwork-network-program 2.0.0", - "clockwork-utils 2.0.0", + "clockwork-cron 2.0.1", + "clockwork-network-program 2.0.1", + "clockwork-utils 2.0.1", "static-pubkey", "version", ] @@ -928,7 +928,7 @@ dependencies = [ [[package]] name = "clockwork-utils" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anchor-lang", "base64 0.13.1", @@ -937,16 +937,16 @@ dependencies = [ [[package]] name = "clockwork-webhook-program" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anchor-lang", - "clockwork-network-program 2.0.0", - "clockwork-utils 2.0.0", + "clockwork-network-program 2.0.1", + "clockwork-utils 2.0.1", ] [[package]] name = "clockwork_plugin" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anchor-lang", "async-trait", @@ -957,10 +957,10 @@ dependencies = [ "cargo_toml", "chrono", "clockwork-client", - "clockwork-cron 2.0.0", + "clockwork-cron 2.0.1", "clockwork-thread-program 1.4.2", - "clockwork-thread-program 2.0.0", - "clockwork-utils 2.0.0", + "clockwork-thread-program 2.0.1", + "clockwork-utils 2.0.1", "futures", "lazy_static", "log 0.4.17", diff --git a/VERSION b/VERSION index 227cea215..38f77a65b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.0 +2.0.1 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 292b86c25..1058fd7d6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cli" -version = "2.0.0" +version = "2.0.1" description = "Command line interface for Clockwork" edition = "2021" license = "AGPL-3.0-or-later" @@ -14,9 +14,9 @@ keywords = ["solana"] anchor-lang = "0.26.0" anyhow = "1.0.61" clap = { version = "3.1.2", features = ["derive"] } -clockwork-client = { path = "../client", version = "2.0.0" } +clockwork-client = { path = "../client", version = "2.0.1" } clockwork-cron = { path = "../cron", version = "2.0.0-alpha" } -clockwork-utils = { path = "../utils", version = "2.0.0" } +clockwork-utils = { path = "../utils", version = "2.0.1" } 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 00ab3c19a..5d17480b6 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-client" -version = "2.0.0" +version = "2.0.1" edition = "2021" description = "Clockwork client" license = "AGPL-3.0-or-later" @@ -19,10 +19,10 @@ anchor-lang = "0.26.0" anchor-spl = { features = ["mint", "token"], version = "0.26.0" } bincode = "1.3.3" borsh = "0.9.3" -clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "2.0.0" } -clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "2.0.0" } -clockwork-utils = { path = "../utils", version = "2.0.0" } -clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "2.0.0" } +clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "2.0.1" } +clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "2.0.1" } +clockwork-utils = { path = "../utils", version = "2.0.1" } +clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "2.0.1" } solana-client = "~1.14.15" solana-sdk = "~1.14.15" spl-associated-token-account = { version = "1.1.1", features = ["no-entrypoint"] } diff --git a/cron/Cargo.toml b/cron/Cargo.toml index 197275ad2..3b330c58a 100644 --- a/cron/Cargo.toml +++ b/cron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-cron" -version = "2.0.0" +version = "2.0.1" 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/macros/Cargo.toml b/macros/Cargo.toml index 62cd8b4ae..0d08caf91 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-macros" -version = "2.0.0" +version = "2.0.1" description = "Macros for Clockwork" edition = "2021" license = "AGPL-3.0-or-later" diff --git a/plugin/Cargo.toml b/plugin/Cargo.toml index 72bea58a0..8107f3ea1 100644 --- a/plugin/Cargo.toml +++ b/plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork_plugin" -version = "2.0.0" +version = "2.0.1" edition = "2021" description = "Clockwork plugin for Solana validators" license = "AGPL-3.0-or-later" @@ -24,9 +24,9 @@ bugsnag = "0.2.1" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } clockwork-thread-program-v1 = { package = "clockwork-thread-program", version = "1.4.2" } clockwork-thread-program-v2 = { package = "clockwork-thread-program", path = "../programs/thread" } -clockwork-client = { path = "../client", version = "2.0.0" } -clockwork-cron = { path = "../cron", version = "2.0.0" } -clockwork-utils = { path = "../utils", version = "2.0.0" } +clockwork-client = { path = "../client", version = "2.0.1" } +clockwork-cron = { path = "../cron", version = "2.0.1" } +clockwork-utils = { path = "../utils", version = "2.0.1" } 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 c56832a97..cb4649da0 100644 --- a/programs/network/Cargo.toml +++ b/programs/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-network-program" -version = "2.0.0" +version = "2.0.1" description = "Clockwork networking protocol" edition = "2021" license = "AGPL-3.0-or-later" @@ -25,4 +25,4 @@ default = [] anchor-lang = "0.26.0" anchor-spl = { features = ["mint", "token"], version = "0.26.0" } # clockwork-macros = { path = "../../macros", version = "2.0.0-gamma" } -clockwork-utils = { path = "../../utils", version = "2.0.0" } +clockwork-utils = { path = "../../utils", version = "2.0.1" } diff --git a/programs/thread/Cargo.toml b/programs/thread/Cargo.toml index 6998e4707..4d50cd1c1 100644 --- a/programs/thread/Cargo.toml +++ b/programs/thread/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-thread-program" -version = "2.0.0" +version = "2.0.1" description = "Clockwork thread program" edition = "2021" license = "AGPL-3.0-or-later" @@ -24,9 +24,9 @@ default = [] [dependencies] anchor-lang = "0.26.0" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } -clockwork-cron = { path = "../../cron", version = "2.0.0" } +clockwork-cron = { path = "../../cron", version = "2.0.1" } # clockwork-macros = { path = "../../macros", version = "2.0.0-gamma" } -clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.0" } -clockwork-utils = { path = "../../utils", version = "2.0.0" } +clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.1" } +clockwork-utils = { path = "../../utils", version = "2.0.1" } static-pubkey = "1.0.3" version = "3.0.0" diff --git a/programs/webhook/Cargo.toml b/programs/webhook/Cargo.toml index 25dac0955..efae6a5c0 100644 --- a/programs/webhook/Cargo.toml +++ b/programs/webhook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-webhook-program" -version = "2.0.0" +version = "2.0.1" description = "Clockwork webhook program" edition = "2021" license = "AGPL-3.0-or-later" @@ -24,5 +24,5 @@ default = [] [dependencies] anchor-lang = { features = ["init-if-needed"], version = "0.26.0" } # clockwork-macros = { path = "../../macros", version = "2.0.0-gamma" } -clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.0" } -clockwork-utils = { path = "../../utils", version = "2.0.0" } +clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.1" } +clockwork-utils = { path = "../../utils", version = "2.0.1" } diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 5bff2ebab..760441617 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-sdk" -version = "2.0.0" +version = "2.0.1" 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.26.0" chrono = { version = "0.4.19", default-features = false, features = ["alloc"] } -clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "2.0.0" } +clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "2.0.1" } nom = "~7" once_cell = "1.5.2" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index b0b47c486..2508da19b 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clockwork-utils" -version = "2.0.0" +version = "2.0.1" description = "Tools for building blocks on Solana" edition = "2021" license = "AGPL-3.0-or-later"