Skip to content

Commit

Permalink
Bump to 0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Garfield committed Mar 18, 2022
1 parent a3e30d8 commit deb837f
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 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 @@
0.1.7
0.1.8
4 changes: 2 additions & 2 deletions bot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cronos-bot"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
description = "Worker bot to execute Cronos tasks"
license = "Apache-2.0"
Expand All @@ -14,7 +14,7 @@ keywords = ["solana", "cronos", "program"]

[dependencies]
anchor-client = "0.22.0"
cronos-sdk = { path = "../sdk", version = "0.1.7" }
cronos-sdk = { path = "../sdk", version = "0.1.8" }
dotenv = "0.15.0"
postgres = "0.19.2"
solana-account-decoder = "1.9.9"
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 = "cronos-cli"
version = "0.1.7"
version = "0.1.8"
description = "Command line instruction scheduler for Solana"
edition = "2021"
license = "Apache-2.0"
Expand All @@ -15,7 +15,7 @@ keywords = ["solana", "cronos", "cli"]
[dependencies]
anchor-lang = "0.22.0"
clap = { version = "3.1.2", features = ["derive"] }
cronos-sdk = { path = "../sdk", version = "0.1.7" }
cronos-sdk = { path = "../sdk", version = "0.1.8" }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
solana-account-decoder = "1.9.9"
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 = "cronos-cron"
version = "0.1.7"
version = "0.1.8"
description = "A cron expression parser that's safe to use in the Solana runtime"
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion programs/cronos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cronos-program"
version = "0.1.7"
version = "0.1.8"
description = "Decentralized task scheduler for Solana"
edition = "2021"
license = "Apache-2.0"
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 = "cronos-sdk"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
description = "Cronos program Rust client"
license = "Apache-2.0"
Expand All @@ -14,7 +14,7 @@ keywords = ["solana", "cronos", "sdk"]

[dependencies]
anchor-client = { version = "0.22.0", features = ["debug"] }
cronos-program = { path = "../programs/cronos", features = ["no-entrypoint"], version = "0.1.7" }
cronos-program = { path = "../programs/cronos", features = ["no-entrypoint"], version = "0.1.8" }
solana-account-decoder = "1.9.9"
solana-client = "1.9.9"
solana-client-helpers = "1.1.0"
Expand Down
4 changes: 2 additions & 2 deletions telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "cronos-telemetry"
version = "0.1.7"
version = "0.1.8"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
chrono = "0.4.19"
cronos-sdk = { path = "../sdk", version = "0.1.7" }
cronos-sdk = { path = "../sdk", version = "0.1.8" }
dotenv = "0.15.0"
elasticsearch = "7.14.0-alpha.1"
serde_json = "~1"
Expand Down

0 comments on commit deb837f

Please sign in to comment.