Skip to content

Commit dbcfcab

Browse files
github-actions[bot]vadorovskyGitHub Actions
authored
chore: Bump version of all Rust projects (#1246)
* 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]>
1 parent d469ea2 commit dbcfcab

File tree

39 files changed

+185
-185
lines changed

39 files changed

+185
-185
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -70,24 +70,24 @@ log = "0.4"
7070
thiserror = "1.0"
7171

7272
# Light Protocol
73-
light-client = { path = "client", version = "0.8.0" }
74-
light-concurrent-merkle-tree = { path = "merkle-tree/concurrent", version = "1.0.0" }
75-
light-hasher = { path = "merkle-tree/hasher", version = "1.0.0" }
76-
light-indexed-merkle-tree = { path = "merkle-tree/indexed", version = "1.0.0" }
77-
light-macros = { path = "macros/light", version = "1.0.0" }
78-
light-merkle-tree-reference = { path = "merkle-tree/reference", version = "1.0.0" }
79-
light-prover-client = { path = "circuit-lib/light-prover-client", version = "1.1.0" }
80-
light-sdk = { path = "sdk", version = "0.9.0" }
81-
light-sdk-macros = { path = "macros/light-sdk-macros", version = "0.1.0" }
82-
light-utils = { path = "utils", version = "1.0.0" }
83-
light-verifier = { path = "circuit-lib/verifier", version = "1.0.0" }
73+
light-client = { path = "client", version = "0.9.0" }
74+
light-concurrent-merkle-tree = { path = "merkle-tree/concurrent", version = "1.1.0" }
75+
light-hasher = { path = "merkle-tree/hasher", version = "1.1.0" }
76+
light-indexed-merkle-tree = { path = "merkle-tree/indexed", version = "1.1.0" }
77+
light-macros = { path = "macros/light", version = "1.1.0" }
78+
light-merkle-tree-reference = { path = "merkle-tree/reference", version = "1.1.0" }
79+
light-prover-client = { path = "circuit-lib/light-prover-client", version = "1.2.0" }
80+
light-sdk = { path = "sdk", version = "0.10.0" }
81+
light-sdk-macros = { path = "macros/light-sdk-macros", version = "0.3.0" }
82+
light-utils = { path = "utils", version = "1.1.0" }
83+
light-verifier = { path = "circuit-lib/verifier", version = "1.1.0" }
8484
photon-api = { path = "photon-api", version = "0.45.0" }
85-
forester-utils = { path = "forester-utils", version = "1.1.0" }
86-
light-hash-set = { path = "merkle-tree/hash-set", version = "1.1.0" }
87-
account-compression = { path = "programs/account-compression", version = "1.1.0", features = ["cpi"] }
88-
light-compressed-token = { path = "programs/compressed-token", version = "1.1.0", features = ["cpi"] }
89-
light-system-program = { path = "programs/system", version = "1.1.0", features = ["cpi"] }
90-
light-registry = { path = "programs/registry", version = "1.1.0", features = ["cpi"]}
85+
forester-utils = { path = "forester-utils", version = "1.2.0" }
86+
light-hash-set = { path = "merkle-tree/hash-set", version = "1.2.0" }
87+
account-compression = { path = "programs/account-compression", version = "1.2.0", features = ["cpi"] }
88+
light-compressed-token = { path = "programs/compressed-token", version = "1.2.0", features = ["cpi"] }
89+
light-system-program = { path = "programs/system", version = "1.2.0", features = ["cpi"] }
90+
light-registry = { path = "programs/registry", version = "1.2.0", features = ["cpi"]}
9191

9292
# Math and crypto
9393
num-bigint = "0.4.6"

circuit-lib/light-prover-client/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "light-prover-client"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
description = "Crate for interacting with Light Protocol circuits"
55
repository = "https://github.com/Lightprotocol/light-protocol"
66
license = "Apache-2.0"
@@ -13,10 +13,10 @@ default = ["gnark"]
1313
[dependencies]
1414

1515
# light local deps
16-
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "1.0.0" }
17-
light-hasher = { path = "../../merkle-tree/hasher", version = "1.0.0" }
18-
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "1.0.0" }
19-
light-utils = { path = "../../utils", version = "1.0.0" }
16+
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "1.1.0" }
17+
light-hasher = { path = "../../merkle-tree/hasher", version = "1.1.0" }
18+
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "1.1.0" }
19+
light-utils = { path = "../../utils", version = "1.1.0" }
2020
# ark dependencies
2121
ark-serialize = "0.4.2"
2222
ark-ec = "0.4.2"

circuit-lib/verifier/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "light-verifier"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "ZKP proof verifier used in Light Protocol"
55
repository = "https://github.com/Lightprotocol/light-protocol"
66
license = "Apache-2.0"
@@ -18,4 +18,4 @@ solana-program = { workspace = true, optional = true }
1818
[dev-dependencies]
1919
tokio = { workspace = true }
2020
reqwest = { version = "0.11.24", features = ["json", "rustls-tls"] }
21-
light-prover-client = { path = "../light-prover-client", version = "1.1.0" }
21+
light-prover-client = { path = "../light-prover-client", version = "1.2.0" }

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "light-client"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
repository = "https://github.com/lightprotocol/light-protocol"

examples/name-service/programs/name-service/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "name-service"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "Created with Anchor"
55
edition = "2021"
66
rust-version = "1.75.0"
@@ -35,6 +35,6 @@ solana-sdk = { workspace = true }
3535

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

0 commit comments

Comments
 (0)