Skip to content

Commit

Permalink
Bump from 1.1.2 to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Garfield committed Oct 4, 2022
1 parent e332e8e commit a0fa6f8
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 44 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 VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.2
1.1.3
6 changes: 3 additions & 3 deletions bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-bench"
version = "1.1.2"
version = "1.1.3"
description = "A benchmarking 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 = "1.1.2" }
clockwork-cron = { path = "../cron", version = "1.1.2" }
clockwork-client = { path = "../client", version = "1.1.3" }
clockwork-cron = { path = "../cron", version = "1.1.3" }
serde_json = "1.0.79"
serde = { version = "1.0.136", features = ["derive"] }
solana-clap-utils = "1.10.34"
Expand Down
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 = "1.1.2"
version = "1.1.3"
description = "Command line interface for Clockwork"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -15,7 +15,7 @@ keywords = ["solana"]
[dependencies]
anyhow = "1.0.61"
clap = { version = "3.1.2", features = ["derive"] }
clockwork-client = { path = "../client", version = "1.1.2" }
clockwork-client = { path = "../client", version = "1.1.3" }
dirs-next = "2.0.0"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
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 = "1.1.2"
version = "1.1.3"
edition = "2021"
description = "Clockwork client"
license = "AGPL-3.0-or-later"
Expand All @@ -19,10 +19,10 @@ anchor-lang = "0.25.0"
anchor-spl = { features = ["mint", "token"], version = "0.25.0" }
bincode = "1.3.3"
borsh = "0.9.3"
clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "1.0.6" }
clockwork-pool-program = { path = "../programs/pool", features = ["no-entrypoint"], version = "1.0.6" }
clockwork-queue-program = { path = "../programs/queue", features = ["no-entrypoint"], version = "1.0.6" }
clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "1.0.6" }
clockwork-network-program = { path = "../programs/network", features = ["no-entrypoint"], version = "1.1.3" }
clockwork-pool-program = { path = "../programs/pool", features = ["no-entrypoint"], version = "1.1.3" }
clockwork-queue-program = { path = "../programs/queue", features = ["no-entrypoint"], version = "1.1.3" }
clockwork-webhook-program = { path = "../programs/webhook", features = ["no-entrypoint"], version = "1.1.3" }
solana-client = "1.10.34"
solana-sdk = "1.10.34"
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 = "1.1.2"
version = "1.1.3"
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 plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork_plugin"
version = "1.1.2"
version = "1.1.3"
edition = "2021"
description = "Clockwork plugin for Solana validators"
license = "AGPL-3.0-or-later"
Expand All @@ -19,7 +19,7 @@ bincode = "1.3.3"
bs58 = "0.4.0"
bugsnag = "0.2.1"
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
clockwork-client = { path = "../client", version = "1.1.2" }
clockwork-client = { path = "../client", version = "1.1.3" }
clockwork-cron = { path = "../cron", version = "1.0.3" }
dashmap = "5.3.3"
log = "0.4"
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 = "1.1.2"
version = "1.1.3"
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-program = { path = "../pool", features = ["cpi"], version = "1.0.6" }
clockwork-queue-program = { path = "../queue", features = ["cpi"], version = "1.0.6" }
clockwork-pool-program = { path = "../pool", features = ["cpi"], version = "1.1.3" }
clockwork-queue-program = { path = "../queue", features = ["cpi"], version = "1.1.3" }
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-program"
version = "1.1.2"
version = "1.1.3"
description = "Clockwork pool protocol"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand Down
6 changes: 3 additions & 3 deletions programs/queue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-queue-program"
version = "1.1.2"
version = "1.1.3"
description = "Clockwork queue program"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -24,6 +24,6 @@ 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 = "1.1.2" }
clockwork-pool-program = { path = "../pool", features = ["cpi"], version = "1.0.6" }
clockwork-cron = { path = "../../cron", version = "1.1.3" }
clockwork-pool-program = { path = "../pool", features = ["cpi"], version = "1.1.3" }
static-pubkey = "1.0.3"
4 changes: 2 additions & 2 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 = "1.1.2"
version = "1.1.3"
description = "Clockwork webhook program"
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-program = { path = "../pool", features = ["cpi"], version = "1.0.6" }
clockwork-pool-program = { path = "../pool", features = ["cpi"], version = "1.1.3" }
22 changes: 14 additions & 8 deletions scripts/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@ sed -i '' -e '3s/^version = "'${current_version}'"/version = "'${new_version}'"/

# Bump inter-program dependencies
sed -i '' -e 's/^clockwork-cron =.*/clockwork-cron = { path = "..\/..\/cron", version = "'${new_version}'" }/g' programs/queue/Cargo.toml
sed -i '' -e 's/^clockwork-pool =.*/clockwork-pool = { path = "..\/pool", features = ["cpi"], version = "'${new_version}'" }/g' programs/network/Cargo.toml
sed -i '' -e 's/^clockwork-pool =.*/clockwork-pool = { path = "..\/pool", features = ["cpi"], version = "'${new_version}'" }/g' programs/queue/Cargo.toml
sed -i '' -e 's/^clockwork-queue =.*/clockwork-queue = { path = "..\/queue", features = ["cpi"], version = "'${new_version}'" }/g' programs/network/Cargo.toml
sed -i '' -e 's/^clockwork-pool =.*/clockwork-pool = { path = "..\/pool", features = ["cpi"], version = "'${new_version}'" }/g' programs/webhook/Cargo.toml
sed -i '' -e 's/^clockwork-pool-proram =.*/clockwork-pool-proram = { path = "..\/pool", features = ["cpi"], version = "'${new_version}'" }/g' programs/network/Cargo.toml
sed -i '' -e 's/^clockwork-pool-program =.*/clockwork-pool-program = { path = "..\/pool", features = ["cpi"], version = "'${new_version}'" }/g' programs/queue/Cargo.toml
sed -i '' -e 's/^clockwork-pool-program =.*/clockwork-pool-program = { path = "..\/pool", features = ["cpi"], version = "'${new_version}'" }/g' programs/network/Cargo.toml
sed -i '' -e 's/^clockwork-queue-program =.*/clockwork-queue-program = { path = "..\/queue", features = ["cpi"], version = "'${new_version}'" }/g' programs/network/Cargo.toml
sed -i '' -e 's/^clockwork-pool-program =.*/clockwork-pool-program = { path = "..\/pool", features = ["cpi"], version = "'${new_version}'" }/g' programs/webhook/Cargo.toml

# Bump clockwork-client
sed -i '' -e 's/^clockwork-network =.*/clockwork-network = { path = "..\/programs\/network", features = ["no-entrypoint"], version = "'${new_version}'" }/g' client/Cargo.toml
sed -i '' -e 's/^clockwork-pool =.*/clockwork-pool = { path = "..\/programs\/pool", features = ["no-entrypoint"], version = "'${new_version}'" }/g' client/Cargo.toml
sed -i '' -e 's/^clockwork-queue =.*/clockwork-queue = { path = "..\/programs\/queue", features = ["no-entrypoint"], version = "'${new_version}'" }/g' client/Cargo.toml
sed -i '' -e 's/^clockwork-webhook =.*/clockwork-webhook = { path = "..\/programs\/webhook", features = ["no-entrypoint"], version = "'${new_version}'" }/g' client/Cargo.toml
sed -i '' -e 's/^clockwork-network-program =.*/clockwork-network-program = { path = "..\/programs\/network", features = ["no-entrypoint"], version = "'${new_version}'" }/g' client/Cargo.toml
sed -i '' -e 's/^clockwork-pool-program =.*/clockwork-pool-program = { path = "..\/programs\/pool", features = ["no-entrypoint"], version = "'${new_version}'" }/g' client/Cargo.toml
sed -i '' -e 's/^clockwork-queue-program =.*/clockwork-queue-program = { path = "..\/programs\/queue", features = ["no-entrypoint"], version = "'${new_version}'" }/g' client/Cargo.toml
sed -i '' -e 's/^clockwork-webhook-program =.*/clockwork-webhook-program = { path = "..\/programs\/webhook", features = ["no-entrypoint"], version = "'${new_version}'" }/g' client/Cargo.toml
sed -i '' -e '3s/^version = "'${current_version}'"/version = "'${new_version}'"/g' client/Cargo.toml

# Bump clockwork-bench
Expand All @@ -46,6 +47,11 @@ sed -i '' -e '3s/^version = "'${current_version}'"/version = "'${new_version}'"/
sed -i '' -e 's/^clockwork-client =.*/clockwork-client = { path = "..\/client", version = "'${new_version}'" }/g' plugin/Cargo.toml
sed -i '' -e '3s/^version = "'${current_version}'"/version = "'${new_version}'"/g' plugin/Cargo.toml

# Bump clockwork-sdk
sed -i '' -e 's/^clockwork-client =.*/clockwork-client = { optional = true, path = "..\/client", version = "'${new_version}'" }/g' sdk/Cargo.toml
sed -i '' -e 's/^clockwork-queue-program =.*/clockwork-queue-program = { path = "..\/programs\/queue", features = ["cpi"], version = "'${new_version}'" }/g' sdk/Cargo.toml
sed -i '' -e '3s/^version = "'${current_version}'"/version = "'${new_version}'"/g' sdk/Cargo.toml

# Update version
echo $new_version > VERSION

Expand Down
6 changes: 3 additions & 3 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clockwork-sdk"
version = "1.0.6"
version = "1.1.3"
description = "An SDK for building dapps with the Clockwork automation engine"
edition = "2021"
license = "AGPL-3.0-or-later"
Expand All @@ -14,8 +14,8 @@ keywords = ["solana"]
name = "clockwork_sdk"

[dependencies]
clockwork-client = { path = "../client", version = "1.0.6", optional = true }
clockwork-queue-program = { path = "../programs/queue", features = ["cpi"], version = "1.0.6" }
clockwork-client = { optional = true, path = "../client", version = "1.1.3" }
clockwork-queue-program = { path = "../programs/queue", features = ["cpi"], version = "1.1.3" }
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
nom = "~7"
once_cell = "1.5.2"
Expand Down

0 comments on commit a0fa6f8

Please sign in to comment.