Skip to content

Commit

Permalink
chore: Bump version of all Rust projects (#1246)
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

* chore: Bump light-sdk-macros

Version 0.2.0 was already released and yanked.

* chore: Keep photon-api at version 0.45.0

---------

Co-authored-by: vadorovsky <[email protected]>
Co-authored-by: GitHub Actions <[email protected]>
Co-authored-by: Michal Rostecki <[email protected]>
  • Loading branch information
4 people authored Sep 20, 2024
1 parent d469ea2 commit dbcfcab
Show file tree
Hide file tree
Showing 39 changed files with 185 additions and 185 deletions.
64 changes: 32 additions & 32 deletions Cargo.lock

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

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,24 +70,24 @@ log = "0.4"
thiserror = "1.0"

# Light Protocol
light-client = { path = "client", version = "0.8.0" }
light-concurrent-merkle-tree = { path = "merkle-tree/concurrent", 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-macros = { path = "macros/light", version = "1.0.0" }
light-merkle-tree-reference = { path = "merkle-tree/reference", version = "1.0.0" }
light-prover-client = { path = "circuit-lib/light-prover-client", version = "1.1.0" }
light-sdk = { path = "sdk", version = "0.9.0" }
light-sdk-macros = { path = "macros/light-sdk-macros", version = "0.1.0" }
light-utils = { path = "utils", version = "1.0.0" }
light-verifier = { path = "circuit-lib/verifier", version = "1.0.0" }
light-client = { path = "client", version = "0.9.0" }
light-concurrent-merkle-tree = { path = "merkle-tree/concurrent", version = "1.1.0" }
light-hasher = { path = "merkle-tree/hasher", version = "1.1.0" }
light-indexed-merkle-tree = { path = "merkle-tree/indexed", version = "1.1.0" }
light-macros = { path = "macros/light", version = "1.1.0" }
light-merkle-tree-reference = { path = "merkle-tree/reference", version = "1.1.0" }
light-prover-client = { path = "circuit-lib/light-prover-client", version = "1.2.0" }
light-sdk = { path = "sdk", version = "0.10.0" }
light-sdk-macros = { path = "macros/light-sdk-macros", version = "0.3.0" }
light-utils = { path = "utils", version = "1.1.0" }
light-verifier = { path = "circuit-lib/verifier", version = "1.1.0" }
photon-api = { path = "photon-api", version = "0.45.0" }
forester-utils = { path = "forester-utils", version = "1.1.0" }
light-hash-set = { path = "merkle-tree/hash-set", version = "1.1.0" }
account-compression = { path = "programs/account-compression", version = "1.1.0", features = ["cpi"] }
light-compressed-token = { path = "programs/compressed-token", version = "1.1.0", features = ["cpi"] }
light-system-program = { path = "programs/system", version = "1.1.0", features = ["cpi"] }
light-registry = { path = "programs/registry", version = "1.1.0", features = ["cpi"]}
forester-utils = { path = "forester-utils", version = "1.2.0" }
light-hash-set = { path = "merkle-tree/hash-set", version = "1.2.0" }
account-compression = { path = "programs/account-compression", version = "1.2.0", features = ["cpi"] }
light-compressed-token = { path = "programs/compressed-token", version = "1.2.0", features = ["cpi"] }
light-system-program = { path = "programs/system", version = "1.2.0", features = ["cpi"] }
light-registry = { path = "programs/registry", version = "1.2.0", features = ["cpi"]}

# Math and crypto
num-bigint = "0.4.6"
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 = "1.1.0"
version = "1.2.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 = "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" }
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "1.1.0" }
light-hasher = { path = "../../merkle-tree/hasher", version = "1.1.0" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "1.1.0" }
light-utils = { path = "../../utils", version = "1.1.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 = "1.0.0"
version = "1.1.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 = "1.1.0" }
light-prover-client = { path = "../light-prover-client", version = "1.2.0" }
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-client"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/lightprotocol/light-protocol"
Expand Down
4 changes: 2 additions & 2 deletions examples/name-service/programs/name-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "name-service"
version = "0.6.0"
version = "0.7.0"
description = "Created with Anchor"
edition = "2021"
rust-version = "1.75.0"
Expand Down Expand Up @@ -35,6 +35,6 @@ solana-sdk = { workspace = true }

[dev-dependencies]
light-client = { workspace = true }
light-test-utils = { path = "../../../../test-utils", version = "1.1.0", features = ["devenv"] }
light-test-utils = { path = "../../../../test-utils", version = "1.2.0", features = ["devenv"] }
solana-program-test = { workspace = true }
tokio = "1.36.0"
Loading

0 comments on commit dbcfcab

Please sign in to comment.