Skip to content

Commit

Permalink
Bump from v2.0.18 to v2.0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgarfield committed Feb 7, 2024
1 parent f3a13d5 commit 44d2038
Show file tree
Hide file tree
Showing 13 changed files with 43 additions and 43 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion OLD_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.17
2.0.18
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.18
2.0.19
16 changes: 8 additions & 8 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-cli"
version = "2.0.18"
version = "2.0.19"
description = "Command line interface for Clockwork"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -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.18" }
clockwork-network-program = { path = "../programs/network", version = "=2.0.18", features = ["no-entrypoint"] }
clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.18" }
clockwork-plugin-utils= { path = "../plugin/utils", version = "=2.0.18" }
clockwork-thread-program = { path = "../programs/thread", version = "=2.0.18", features = ["no-entrypoint"] }
clockwork-utils = { path = "../utils", version = "=2.0.18" }
clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.18", features = ["no-entrypoint"] }
clockwork-cron = { path = "../cron", version = "=2.0.19" }
clockwork-network-program = { path = "../programs/network", version = "=2.0.19", features = ["no-entrypoint"] }
clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.19" }
clockwork-plugin-utils= { path = "../plugin/utils", version = "=2.0.19" }
clockwork-thread-program = { path = "../programs/thread", version = "=2.0.19", features = ["no-entrypoint"] }
clockwork-utils = { path = "../utils", version = "=2.0.19" }
clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.19", features = ["no-entrypoint"] }
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
dirs-next = "2.0.0"
indicatif = "0.16"
Expand Down
2 changes: 1 addition & 1 deletion cron/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-cron"
version = "2.0.18"
version = "2.0.19"
description = "A cron expression parser that's safe to use in the Solana runtime"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down
16 changes: 8 additions & 8 deletions plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork_plugin"
version = "2.0.18"
version = "2.0.19"
# this needs to match whatever solana uses!
rust-version = "1.60.0"
edition = "2021"
Expand All @@ -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.18" }
clockwork-network-program = { path = "../programs/network", version = "=2.0.18" }
clockwork-plugin-utils = { path = "utils", version = "=2.0.18" }
clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.18" }
clockwork-thread-program = { package = "clockwork-thread-program", path = "../programs/thread", version = "=2.0.18" }
clockwork-cron = { path = "../cron", version = "=2.0.19" }
clockwork-network-program = { path = "../programs/network", version = "=2.0.19" }
clockwork-plugin-utils = { path = "utils", version = "=2.0.19" }
clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.19" }
clockwork-thread-program = { package = "clockwork-thread-program", path = "../programs/thread", version = "=2.0.19" }
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.18" }
clockwork-utils = { path = "../utils", version = "=2.0.18" }
clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.19" }
clockwork-utils = { path = "../utils", version = "=2.0.19" }
lazy_static = "1.4.0"
log = "0.4"
prost = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion plugin/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-plugin-utils"
version = "2.0.18"
version = "2.0.19"
edition = "2021"
description = "Clockwork Plugin Utils"
license = "AGPL-3.0-or-later"
Expand Down
4 changes: 2 additions & 2 deletions programs/network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-network-program"
version = "2.0.18"
version = "2.0.19"
description = "Clockwork networking protocol"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -24,6 +24,6 @@ default = []
[dependencies]
anchor-lang = "0.29.0"
anchor-spl = { features = ["mint", "token"], version = "0.29.0" }
clockwork-utils = { path = "../../utils", version = "=2.0.18" }
clockwork-utils = { path = "../../utils", version = "=2.0.19" }
winnow = "=0.4.1"
toml_datetime = "=0.6.1"
8 changes: 4 additions & 4 deletions programs/thread/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-thread-program"
version = "2.0.18"
version = "2.0.19"
description = "Clockwork thread program"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -24,10 +24,10 @@ default = []
[dependencies]
anchor-lang = "0.29.0"
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
clockwork-cron = { path = "../../cron", version = "=2.0.18" }
clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.18" }
clockwork-cron = { path = "../../cron", version = "=2.0.19" }
clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.19" }
clockwork-thread-program-v1 = { path = "v1", version = "=1.4.4" }
clockwork-utils = { path = "../../utils", version = "=2.0.18" }
clockwork-utils = { path = "../../utils", version = "=2.0.19" }
pyth-sdk-solana = "0.9"
static-pubkey = "1.0.3"
version = "3.0.0"
6 changes: 3 additions & 3 deletions programs/webhook/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-webhook-program"
version = "2.0.18"
version = "2.0.19"
description = "Clockwork webhook program"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -23,6 +23,6 @@ default = []

[dependencies]
anchor-lang = { features = ["init-if-needed"], version = "0.29.0" }
clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.18" }
clockwork-utils = { path = "../../utils", version = "=2.0.18" }
clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.19" }
clockwork-utils = { path = "../../utils", version = "=2.0.19" }
serde = "1.0.152"
2 changes: 1 addition & 1 deletion relayer/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-relayer-api"
version = "2.0.18"
version = "2.0.19"
edition = "2021"
description = "Clockwork relayer for webhook requests"
license = "AGPL-3.0-or-later"
Expand Down
4 changes: 2 additions & 2 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-sdk"
version = "2.0.18"
version = "2.0.19"
description = "An SDK for building automated programs on Solana"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -16,7 +16,7 @@ name = "clockwork_sdk"
[dependencies]
anchor-lang = "0.29.0"
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "=2.0.18" }
clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "=2.0.19" }
nom = "~7"
once_cell = "1.5.2"

Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-utils"
version = "2.0.18"
version = "2.0.19"
description = "Tools for building blocks on Solana"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down

0 comments on commit 44d2038

Please sign in to comment.