Skip to content

Commit

Permalink
Bump from 0.2.0 to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Garfield committed Aug 2, 2022
1 parent 7082c07 commit 848950f
Show file tree
Hide file tree
Showing 14 changed files with 166 additions and 165 deletions.
276 changes: 138 additions & 138 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
1.0.0
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-cli"
version = "0.2.0"
version = "1.0.0"
description = "Command line instruction scheduler for Solana"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -14,7 +14,7 @@ keywords = ["solana"]

[dependencies]
clap = { version = "3.1.2", features = ["derive"] }
clockwork-client = { path = "../client", version = "0.2.0" }
clockwork-client = { path = "../client", version = "1.0.0" }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
solana-clap-utils = "1.10.29"
Expand Down
12 changes: 6 additions & 6 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-client"
version = "0.2.0"
version = "1.0.0"
edition = "2021"
description = "Clockwork client"
license = "AGPL-3.0-or-later"
Expand All @@ -18,11 +18,11 @@ name = "clockwork_client"
anchor-lang = "0.25.0"
anchor-spl = { features = ["mint", "token"], version = "0.25.0" }
bincode = "1.3.3"
clockwork-health = { path = "../programs/health", features = ["no-entrypoint"], version = "0.2.0" }
clockwork-http = { path = "../programs/http", features = ["no-entrypoint"], version = "0.2.0" }
clockwork-network = { path = "../programs/network", features = ["no-entrypoint"], version = "0.2.0" }
clockwork-pool = { path = "../programs/pool", features = ["no-entrypoint"], version = "0.2.0" }
clockwork-scheduler = { path = "../programs/scheduler", features = ["no-entrypoint"], version = "0.2.0" }
clockwork-health = { path = "../programs/health", features = ["no-entrypoint"], version = "1.0.0" }
clockwork-http = { path = "../programs/http", features = ["no-entrypoint"], version = "1.0.0" }
clockwork-network = { path = "../programs/network", features = ["no-entrypoint"], version = "1.0.0" }
clockwork-pool = { path = "../programs/pool", features = ["no-entrypoint"], version = "1.0.0" }
clockwork-scheduler = { path = "../programs/scheduler", features = ["no-entrypoint"], version = "1.0.0" }
solana-client = "1.10.29"
solana-sdk = "1.10.29"
thiserror = "1.0.31"
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 = "0.2.0"
version = "1.0.0"
description = "A cron expression parser that's safe to use in the Solana runtime"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down
4 changes: 2 additions & 2 deletions metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-metrics"
version = "0.2.0"
version = "1.0.0"
description = "Performance monitoring for Clockwork clusters"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -12,7 +12,7 @@ keywords = ["solana"]

[dependencies]
chrono = "0.4.19"
clockwork-client = { path = "../client", version = "0.2.0" }
clockwork-client = { path = "../client", version = "1.0.0" }
dotenv = "0.15.0"
elasticsearch = "7.14.0-alpha.1"
serde_json = "~1"
Expand Down
4 changes: 2 additions & 2 deletions plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork_plugin"
version = "0.2.0"
version = "1.0.0"
edition = "2021"
description = "Clockwork plugin for Solana validators"
license = "AGPL-3.0-or-later"
Expand All @@ -18,7 +18,7 @@ bincode = "1.3.3"
bs58 = "0.4.0"
bugsnag = "0.2.1"
cached = "0.34.1"
clockwork-client = { path = "../client", version = "0.2.0" }
clockwork-client = { path = "../client", version = "1.0.0" }
dashmap = "5.3.3"
log = "0.4"
prost = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion programs/health/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-health"
version = "0.2.0"
version = "1.0.0"
description = "Clockwork health protocol"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down
4 changes: 2 additions & 2 deletions programs/http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-http"
version = "0.2.0"
version = "1.0.0"
description = "Clockwork http protocol"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -23,4 +23,4 @@ default = []

[dependencies]
anchor-lang = { features = ["init-if-needed"], version = "0.25.0" }
clockwork-pool = { path = "../pool", features = ["cpi"], version = "0.2.0" }
clockwork-pool = { path = "../pool", features = ["cpi"], version = "1.0.0" }
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"
version = "0.2.0"
version = "1.0.0"
description = "Clockwork networking protocol"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -24,5 +24,5 @@ default = []
[dependencies]
anchor-lang = "0.25.0"
anchor-spl = { features = ["mint", "token"], version = "0.25.0" }
clockwork-pool = { path = "../pool", features = ["cpi"], version = "0.2.0" }
clockwork-scheduler = { path = "../scheduler", features = ["cpi"], version = "0.2.0" }
clockwork-pool = { path = "../pool", features = ["cpi"], version = "1.0.0" }
clockwork-scheduler = { path = "../scheduler", features = ["cpi"], version = "1.0.0" }
2 changes: 1 addition & 1 deletion programs/pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-pool"
version = "0.2.0"
version = "1.0.0"
description = "Clockwork pool protocol"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down
6 changes: 3 additions & 3 deletions programs/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-scheduler"
version = "0.2.0"
version = "1.0.0"
description = "Clockwork scheduling protocol"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -24,5 +24,5 @@ default = []
[dependencies]
anchor-lang = { features = ["init-if-needed"], version = "0.25.0" }
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
clockwork-cron = { path = "../../cron", version = "0.2.0" }
clockwork-pool = { path = "../pool", features = ["cpi"], version = "0.2.0" }
clockwork-cron = { path = "../../cron", version = "1.0.0" }
clockwork-pool = { path = "../pool", features = ["cpi"], version = "1.0.0" }
1 change: 1 addition & 0 deletions scripts/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ sed -i '' -e 's/^clockwork-pool =.*/clockwork-pool = { path = "..\/pool", featur
sed -i '' -e 's/^clockwork-scheduler =.*/clockwork-scheduler = { path = "..\/scheduler", features = ["cpi"], version = "'${new_version}'" }/g' programs/network/Cargo.toml
sed -i '' -e 's/^clockwork-cron =.*/clockwork-cron = { path = "..\/..\/cron", version = "'${new_version}'" }/g' programs/scheduler/Cargo.toml
sed -i '' -e 's/^clockwork-pool =.*/clockwork-pool = { path = "..\/pool", features = ["cpi"], version = "'${new_version}'" }/g' programs/scheduler/Cargo.toml
sed -i '' -e 's/^clockwork-pool =.*/clockwork-pool = { path = "..\/pool", features = ["cpi"], version = "'${new_version}'" }/g' programs/http/Cargo.toml

# Bump clockwork-client
sed -i '' -e 's/^clockwork-health =.*/clockwork-health = { path = "..\/programs\/health", features = ["no-entrypoint"], version = "'${new_version}'" }/g' client/Cargo.toml
Expand Down
6 changes: 3 additions & 3 deletions stress/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-stress"
version = "0.2.0"
version = "1.0.0"
description = "A stress testing tool for Clockwork"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -14,8 +14,8 @@ keywords = ["solana"]
base64 = "0.13.0"
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
clap = { version = "3.1.2", features = ["derive"] }
clockwork-client = { path = "../client", version = "0.2.0" }
clockwork-cron = { path = "../cron", version = "0.2.0" }
clockwork-client = { path = "../client", version = "1.0.0" }
clockwork-cron = { path = "../cron", version = "1.0.0" }
serde_json = "1.0.79"
serde = { version = "1.0.136", features = ["derive"] }
solana-clap-utils = "1.10.29"
Expand Down

0 comments on commit 848950f

Please sign in to comment.