Skip to content

Commit

Permalink
Bump from 2.0.0-alpha to 2.0.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgarfield committed Feb 18, 2023
1 parent 4ceea7d commit 7c88ec5
Show file tree
Hide file tree
Showing 12 changed files with 55 additions and 55 deletions.
50 changes: 25 additions & 25 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 VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0-alpha
2.0.0-beta
6 changes: 3 additions & 3 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.0-alpha"
version = "2.0.0-beta"
description = "Command line interface for Clockwork"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -13,9 +13,9 @@ keywords = ["solana"]
[dependencies]
anyhow = "1.0.61"
clap = { version = "3.1.2", features = ["derive"] }
clockwork-client = { path = "../client", version = "2.0.0-alpha" }
clockwork-client = { path = "../client", version = "2.0.0-beta" }
clockwork-cron = { path = "../cron", version = "2.0.0-alpha" }
clockwork-utils = { path = "../utils", version = "2.0.0-alpha" }
clockwork-utils = { path = "../utils", version = "2.0.0-beta" }
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
dirs-next = "2.0.0"
regex = "1.6.0"
Expand Down
10 changes: 5 additions & 5 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-client"
version = "2.0.0-alpha"
version = "2.0.0-beta"
edition = "2021"
description = "Clockwork client"
license = "AGPL-3.0-or-later"
Expand All @@ -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-alpha" }
clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "2.0.0-alpha" }
clockwork-utils = { path = "../utils", version = "2.0.0-alpha" }
clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "2.0.0-alpha" }
clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "2.0.0-beta" }
clockwork-thread-program = { path = "../programs/thread", features = ["no-entrypoint"], version = "2.0.0-beta" }
clockwork-utils = { path = "../utils", version = "2.0.0-beta" }
clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "2.0.0-beta" }
solana-client = "~1.14.12"
solana-sdk = "~1.14.12"
spl-associated-token-account = { version = "1.1.1", features = ["no-entrypoint"] }
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.0-alpha"
version = "2.0.0-beta"
description = "A cron expression parser that's safe to use in the Solana runtime"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-macros"
version = "2.0.0-alpha"
version = "2.0.0-beta"
description = "Macros for Clockwork"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down
8 changes: 4 additions & 4 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.0-alpha"
version = "2.0.0-beta"
edition = "2021"
description = "Clockwork plugin for Solana validators"
license = "AGPL-3.0-or-later"
Expand All @@ -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-alpha" }
clockwork-cron = { path = "../cron", version = "2.0.0-alpha" }
clockwork-utils = { path = "../utils", version = "2.0.0-alpha" }
clockwork-client = { path = "../client", version = "2.0.0-beta" }
clockwork-cron = { path = "../cron", version = "2.0.0-beta" }
clockwork-utils = { path = "../utils", version = "2.0.0-beta" }
lazy_static = "1.4.0"
log = "0.4"
prost = "0.10.0"
Expand Down
6 changes: 3 additions & 3 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.0-alpha"
version = "2.0.0-beta"
description = "Clockwork networking protocol"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -24,5 +24,5 @@ default = []
[dependencies]
anchor-lang = "0.26.0"
anchor-spl = { features = ["mint", "token"], version = "0.26.0" }
clockwork-macros = { path = "../../macros", version = "2.0.0-alpha" }
clockwork-utils = { path = "../../utils", version = "2.0.0-alpha" }
clockwork-macros = { path = "../../macros", version = "2.0.0-beta" }
clockwork-utils = { path = "../../utils", version = "2.0.0-beta" }
10 changes: 5 additions & 5 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.0-alpha"
version = "2.0.0-beta"
description = "Clockwork thread program"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -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-alpha" }
clockwork-macros = { path = "../../macros", version = "2.0.0-alpha" }
clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.0-alpha" }
clockwork-utils = { path = "../../utils", version = "2.0.0-alpha" }
clockwork-cron = { path = "../../cron", version = "2.0.0-beta" }
clockwork-macros = { path = "../../macros", version = "2.0.0-beta" }
clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.0-beta" }
clockwork-utils = { path = "../../utils", version = "2.0.0-beta" }
static-pubkey = "1.0.3"
version = "3.0.0"
8 changes: 4 additions & 4 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.0-alpha"
version = "2.0.0-beta"
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.26.0" }
clockwork-macros = { path = "../../macros", version = "2.0.0-alpha" }
clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.0-alpha" }
clockwork-utils = { path = "../../utils", version = "2.0.0-alpha" }
clockwork-macros = { path = "../../macros", version = "2.0.0-beta" }
clockwork-network-program = { path = "../network", features = ["cpi"], version = "2.0.0-beta" }
clockwork-utils = { path = "../../utils", version = "2.0.0-beta" }
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.0-alpha"
version = "2.0.0-beta"
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.26.0"
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "2.0.0-alpha" }
clockwork-thread-program = { path = "../programs/thread", features = ["cpi"], version = "2.0.0-beta" }
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.0-alpha"
version = "2.0.0-beta"
description = "Tools for building blocks on Solana"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down

0 comments on commit 7c88ec5

Please sign in to comment.