Skip to content

Commit 3469fc7

Browse files
committed
v1.0.0
1 parent f7c539f commit 3469fc7

File tree

13 files changed

+59
-59
lines changed

13 files changed

+59
-59
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ edition = "2021"
2424
license-file = "LICENSE"
2525
readme = "README.md"
2626
repository = "https://github.com/iosis-tech/swiftness"
27-
version = "0.1.3"
27+
version = "1.0.0"
2828

2929
[workspace.dependencies]
3030
blake2 = { version = "0.10.6", default-features = false }
@@ -39,9 +39,9 @@ starknet-types-core = { version = "0.1.5", default-features = false }
3939
thiserror = "1.0.61"
4040
thiserror-no-std = "2.0.2"
4141

42-
swiftness_air = { path = "crates/air", default-features = false, version = "0.1.3" }
43-
swiftness_commitment = { path = "crates/commitment", default-features = false, version = "0.1.3" }
44-
swiftness_fri = { path = "crates/fri", default-features = false, version = "0.1.3" }
45-
swiftness_pow = { path = "crates/pow", default-features = false, version = "0.1.3" }
46-
swiftness_stark = { path = "crates/stark", default-features = false, version = "0.1.3" }
47-
swiftness_transcript = { path = "crates/transcript", default-features = false, version = "0.1.3" }
42+
swiftness_air = { path = "crates/air", default-features = false, version = "1.0.0" }
43+
swiftness_commitment = { path = "crates/commitment", default-features = false, version = "1.0.0" }
44+
swiftness_fri = { path = "crates/fri", default-features = false, version = "1.0.0" }
45+
swiftness_pow = { path = "crates/pow", default-features = false, version = "1.0.0" }
46+
swiftness_stark = { path = "crates/stark", default-features = false, version = "1.0.0" }
47+
swiftness_transcript = { path = "crates/transcript", default-features = false, version = "1.0.0" }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div align="center">
44

5-
![Version](https://img.shields.io/badge/v0.1.3-green?style=flat-square&logo=git&logoColor=white&label=version)
5+
![Version](https://img.shields.io/badge/v1.0.0-green?style=flat-square&logo=git&logoColor=white&label=version)
66
![Continuous Integration](https://img.shields.io/github/actions/workflow/status/iosis-tech/swiftness/ci.yml?style=flat-square&logo=githubactions&logoColor=white&label=Continuous%20Integration)
77

88
[![Crates.io Version](https://img.shields.io/crates/v/swiftness?style=flat-square&logo=lootcrate)](https://crates.io/crates/swiftness)

cli/Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@ edition = "2021"
55
license-file = "LICENSE"
66
readme = "../README.md"
77
repository = "https://github.com/iosis-tech/swiftness"
8-
version = "0.1.3"
8+
version = "1.0.0"
99

1010
[dependencies]
1111
clap = { version = "4.4.4", features = ["derive"] }
1212
starknet-core = "0.12.0"
1313

1414
swiftness_air = { path = "../crates/air", default-features = false, features = [
1515
"std",
16-
], version = "0.1.3" }
16+
], version = "1.0.0" }
1717
swiftness_commitment = { path = "../crates/commitment", default-features = false, features = [
1818
"std",
19-
], version = "0.1.3" }
19+
], version = "1.0.0" }
2020
swiftness_fri = { path = "../crates/fri", default-features = false, features = [
2121
"std",
22-
], version = "0.1.3" }
22+
], version = "1.0.0" }
2323
swiftness_pow = { path = "../crates/pow", default-features = false, features = [
2424
"std",
25-
], version = "0.1.3" }
25+
], version = "1.0.0" }
2626
swiftness_stark = { path = "../crates/stark", default-features = false, features = [
2727
"std",
28-
], version = "0.1.3" }
29-
swiftness_proof_parser = { path = "../proof_parser", version = "0.1.3" }
28+
], version = "1.0.0" }
29+
swiftness_proof_parser = { path = "../proof_parser", version = "1.0.0" }
3030

3131
[features]
3232
default = ["recursive", "keccak_160_lsb", "stone5"]

examples/no_std_build/Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/no_std_build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "no_std_build"
3-
version = "0.1.3"
3+
version = "1.0.0"
44
edition = "2021"
55

66
[dependencies]

proof_parser/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proof_parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license-file = "LICENSE"
66
readme = "README.md"
77
repository = "https://github.com/iosis-tech/swiftness"
8-
version = "0.1.3"
8+
version = "1.0.0"
99

1010
[dependencies]
1111
anyhow = "1.0.80"

wasm_bindings/Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)