Skip to content

Commit 44d2038

Browse files
committed
Bump from v2.0.18 to v2.0.19
1 parent f3a13d5 commit 44d2038

File tree

13 files changed

+43
-43
lines changed

13 files changed

+43
-43
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

OLD_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.17
1+
2.0.18

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.18
1+
2.0.19

cli/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clockwork-cli"
3-
version = "2.0.18"
3+
version = "2.0.19"
44
description = "Command line interface for Clockwork"
55
edition = "2021"
66
license = "AGPL-3.0-or-later"
@@ -18,13 +18,13 @@ anyhow = "1.0.61"
1818
bincode = "1.3.3"
1919
bzip2 = "0.4"
2020
clap = { version = "3.1.2", features = ["derive"] }
21-
clockwork-cron = { path = "../cron", version = "=2.0.18" }
22-
clockwork-network-program = { path = "../programs/network", version = "=2.0.18", features = ["no-entrypoint"] }
23-
clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.18" }
24-
clockwork-plugin-utils= { path = "../plugin/utils", version = "=2.0.18" }
25-
clockwork-thread-program = { path = "../programs/thread", version = "=2.0.18", features = ["no-entrypoint"] }
26-
clockwork-utils = { path = "../utils", version = "=2.0.18" }
27-
clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.18", features = ["no-entrypoint"] }
21+
clockwork-cron = { path = "../cron", version = "=2.0.19" }
22+
clockwork-network-program = { path = "../programs/network", version = "=2.0.19", features = ["no-entrypoint"] }
23+
clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.19" }
24+
clockwork-plugin-utils= { path = "../plugin/utils", version = "=2.0.19" }
25+
clockwork-thread-program = { path = "../programs/thread", version = "=2.0.19", features = ["no-entrypoint"] }
26+
clockwork-utils = { path = "../utils", version = "=2.0.19" }
27+
clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.19", features = ["no-entrypoint"] }
2828
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
2929
dirs-next = "2.0.0"
3030
indicatif = "0.16"

cron/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clockwork-cron"
3-
version = "2.0.18"
3+
version = "2.0.19"
44
description = "A cron expression parser that's safe to use in the Solana runtime"
55
edition = "2021"
66
license = "AGPL-3.0-or-later"

plugin/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clockwork_plugin"
3-
version = "2.0.18"
3+
version = "2.0.19"
44
# this needs to match whatever solana uses!
55
rust-version = "1.60.0"
66
edition = "2021"
@@ -26,14 +26,14 @@ bincode = "1.3.3"
2626
bs58 = "0.4.0"
2727
bugsnag = "0.2.1"
2828
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
29-
clockwork-cron = { path = "../cron", version = "=2.0.18" }
30-
clockwork-network-program = { path = "../programs/network", version = "=2.0.18" }
31-
clockwork-plugin-utils = { path = "utils", version = "=2.0.18" }
32-
clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.18" }
33-
clockwork-thread-program = { package = "clockwork-thread-program", path = "../programs/thread", version = "=2.0.18" }
29+
clockwork-cron = { path = "../cron", version = "=2.0.19" }
30+
clockwork-network-program = { path = "../programs/network", version = "=2.0.19" }
31+
clockwork-plugin-utils = { path = "utils", version = "=2.0.19" }
32+
clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.19" }
33+
clockwork-thread-program = { package = "clockwork-thread-program", path = "../programs/thread", version = "=2.0.19" }
3434
clockwork-thread-program-v1 = { package = "clockwork-thread-program-v1", path = "../programs/thread/v1", version = "=1.4.4" }
35-
clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.18" }
36-
clockwork-utils = { path = "../utils", version = "=2.0.18" }
35+
clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.19" }
36+
clockwork-utils = { path = "../utils", version = "=2.0.19" }
3737
lazy_static = "1.4.0"
3838
log = "0.4"
3939
prost = "0.10.0"

plugin/utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clockwork-plugin-utils"
3-
version = "2.0.18"
3+
version = "2.0.19"
44
edition = "2021"
55
description = "Clockwork Plugin Utils"
66
license = "AGPL-3.0-or-later"

programs/network/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clockwork-network-program"
3-
version = "2.0.18"
3+
version = "2.0.19"
44
description = "Clockwork networking protocol"
55
edition = "2021"
66
license = "AGPL-3.0-or-later"
@@ -24,6 +24,6 @@ default = []
2424
[dependencies]
2525
anchor-lang = "0.29.0"
2626
anchor-spl = { features = ["mint", "token"], version = "0.29.0" }
27-
clockwork-utils = { path = "../../utils", version = "=2.0.18" }
27+
clockwork-utils = { path = "../../utils", version = "=2.0.19" }
2828
winnow = "=0.4.1"
2929
toml_datetime = "=0.6.1"

programs/thread/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clockwork-thread-program"
3-
version = "2.0.18"
3+
version = "2.0.19"
44
description = "Clockwork thread program"
55
edition = "2021"
66
license = "AGPL-3.0-or-later"
@@ -24,10 +24,10 @@ default = []
2424
[dependencies]
2525
anchor-lang = "0.29.0"
2626
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
27-
clockwork-cron = { path = "../../cron", version = "=2.0.18" }
28-
clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.18" }
27+
clockwork-cron = { path = "../../cron", version = "=2.0.19" }
28+
clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.19" }
2929
clockwork-thread-program-v1 = { path = "v1", version = "=1.4.4" }
30-
clockwork-utils = { path = "../../utils", version = "=2.0.18" }
30+
clockwork-utils = { path = "../../utils", version = "=2.0.19" }
3131
pyth-sdk-solana = "0.9"
3232
static-pubkey = "1.0.3"
3333
version = "3.0.0"

programs/webhook/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clockwork-webhook-program"
3-
version = "2.0.18"
3+
version = "2.0.19"
44
description = "Clockwork webhook program"
55
edition = "2021"
66
license = "AGPL-3.0-or-later"
@@ -23,6 +23,6 @@ default = []
2323

2424
[dependencies]
2525
anchor-lang = { features = ["init-if-needed"], version = "0.29.0" }
26-
clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.18" }
27-
clockwork-utils = { path = "../../utils", version = "=2.0.18" }
26+
clockwork-network-program = { path = "../network", features = ["cpi"], version = "=2.0.19" }
27+
clockwork-utils = { path = "../../utils", version = "=2.0.19" }
2828
serde = "1.0.152"

0 commit comments

Comments
 (0)