Skip to content

Commit

Permalink
chore: Bump version of all Rust projects (#1187)
Browse files Browse the repository at this point in the history
* chore: Bump version of all Rust projects

* Include IDL and other changes post build

* extract light-sdk-macros (#1189)

Co-authored-by: swen <[email protected]>

* fix: lint (#1190)

Co-authored-by: swen <[email protected]>

---------

Co-authored-by: SwenSchaeferjohann <[email protected]>
Co-authored-by: GitHub Actions <[email protected]>
Co-authored-by: swen <[email protected]>
  • Loading branch information
4 people authored Sep 9, 2024
1 parent 562b27d commit 1cb0f06
Show file tree
Hide file tree
Showing 52 changed files with 3,385 additions and 508 deletions.
77 changes: 45 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"circuit-lib/verifier",
"macros/aligned-sized",
"macros/light",
"macros/light-sdk-macros",
"merkle-tree/*",
"programs/account-compression",
"programs/system",
Expand Down
10 changes: 5 additions & 5 deletions circuit-lib/light-prover-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-prover-client"
version = "0.7.0"
version = "1.0.0"
description = "Crate for interacting with Light Protocol circuits"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand All @@ -13,10 +13,10 @@ default = ["gnark"]
[dependencies]

# light local deps
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "0.7.0" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.7.0" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.7.0" }
light-utils = { path = "../../utils", version = "0.7.0" }
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "1.0.0" }
light-hasher = { path = "../../merkle-tree/hasher", version = "1.0.0" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "1.0.0" }
light-utils = { path = "../../utils", version = "1.0.0" }
# ark dependencies
ark-serialize = "0.4.2"
ark-ec = "0.4.2"
Expand Down
4 changes: 2 additions & 2 deletions circuit-lib/verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-verifier"
version = "0.7.0"
version = "1.0.0"
description = "ZKP proof verifier used in Light Protocol"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand All @@ -18,4 +18,4 @@ solana-program = { workspace = true, optional = true }
[dev-dependencies]
tokio = { workspace = true }
reqwest = { version = "0.11.24", features = ["json", "rustls-tls"] }
light-prover-client = { path = "../light-prover-client", version = "0.7.0" }
light-prover-client = { path = "../light-prover-client", version = "1.0.0" }
Loading

0 comments on commit 1cb0f06

Please sign in to comment.