Skip to content

Commit

Permalink
Merge pull request zksecurity#26 from zksecurity/release-v0.1.0
Browse files Browse the repository at this point in the history
release-v0.1.0
  • Loading branch information
mellowcroc authored Nov 11, 2024
2 parents c574bcb + f2818ba commit e12447e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stone-cli"
version = "0.1.0-alpha"
version = "0.1.0"
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ static DISTS: Lazy<HashMap<(Os, Arch), Vec<Artifacts>>> = Lazy::new(|| {
(Os::Linux, Arch::Amd64),
vec![
Artifacts {
url: "https://github.com/zksecurity/stone-cli/releases/download/v0.1.0-alpha/cairo1-run-v2.0.0-rc0-x86_64.tar.gz".to_string(),
url: "https://github.com/zksecurity/stone-cli/releases/download/v0.1.0/cairo1-run-v2.0.0-rc0-x86_64.tar.gz".to_string(),
sha256_sum: "3c15ed3a8b9fce2e18c7923a0c9c5e07058f3432a2f6d2ef3f66384ad0298e23".to_string(),
},
Artifacts {
Expand All @@ -40,7 +40,7 @@ static DISTS: Lazy<HashMap<(Os, Arch), Vec<Artifacts>>> = Lazy::new(|| {
(Os::MacOS, Arch::Aarch64),
vec![
Artifacts {
url: "https://github.com/zksecurity/stone-cli/releases/download/v0.1.0-alpha/cairo1-run-v2.0.0-rc0-aarch64.tar.gz".to_string(),
url: "https://github.com/zksecurity/stone-cli/releases/download/v0.1.0/cairo1-run-v2.0.0-rc0-aarch64.tar.gz".to_string(),
sha256_sum: "136dbf856b5909a3f4197a038ad57dc10b34201e8f97a3045a0699592d2442db".to_string(),
},
Artifacts {
Expand Down
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::path::PathBuf;
#[derive(Parser, Debug)]
#[command(
name = "stone-cli",
version = "0.1.0-alpha",
version = "0.1.0",
about = "CLI for proving Cairo programs and serializing proofs for Starknet and Ethereum"
)]
#[command(bin_name = "stone-cli")]
Expand Down

0 comments on commit e12447e

Please sign in to comment.