Skip to content

Commit

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

---------

Co-authored-by: SwenSchaeferjohann <[email protected]>
Co-authored-by: GitHub Actions <[email protected]>
  • Loading branch information
3 people authored Jun 22, 2024
1 parent 9c00296 commit 526dcfa
Show file tree
Hide file tree
Showing 35 changed files with 175 additions and 175 deletions.
58 changes: 29 additions & 29 deletions Cargo.lock

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

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.1.4"
version = "0.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 = "0.1.4" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.1.4" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.1.4" }
light-utils = { path = "../../utils", version = "0.1.4" }
light-merkle-tree-reference = { path = "../../merkle-tree/reference", version = "0.2.0" }
light-hasher = { path = "../../merkle-tree/hasher", version = "0.2.0" }
light-indexed-merkle-tree = { path = "../../merkle-tree/indexed", version = "0.2.0" }
light-utils = { path = "../../utils", version = "0.2.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.1.4"
version = "0.2.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 = { version = "1.18.11", optional = true }
[dev-dependencies]
tokio = { version = "1.36.0", features = ["rt", "macros"] }
reqwest = { version = "0.11.24", features = ["json", "rustls-tls"] }
light-prover-client = { path = "../light-prover-client", version = "0.1.4" }
light-prover-client = { path = "../light-prover-client", version = "0.2.0" }
18 changes: 9 additions & 9 deletions examples/token-escrow/programs/token-escrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "token-escrow"
version = "0.1.4"
version = "0.2.0"
description = "Solana escrow implementation using account compression"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand All @@ -22,22 +22,22 @@ idl-build = ["anchor-lang/idl-build", "anchor-spl/idl-build"]

[dependencies]
anchor-lang = { version="0.29.0", features = ["init-if-needed"] }
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.3.4", features = ["cpi", "cpi-context"]}
light-system-program = { path = "../../../../programs/system", version = "0.3.4", features = ["cpi", "cpi-context"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.3.5", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.1.4" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.1.4" }
light-sdk = { path = "../../../../sdk", version = "0.1.0", features = ["cpi", "cpi-context"] }
light-compressed-token = { path = "../../../../programs/compressed-token", version = "0.4.0", features = ["cpi", "cpi-context"]}
light-system-program = { path = "../../../../programs/system", version = "0.4.0", features = ["cpi", "cpi-context"]}
account-compression = { path = "../../../../programs/account-compression", version = "0.4.0", features = ["cpi"] }
light-hasher = { path = "../../../../merkle-tree/hasher", version = "0.2.0" }
light-verifier = { path = "../../../../circuit-lib/verifier", version = "0.2.0" }
light-sdk = { path = "../../../../sdk", version = "0.2.0", features = ["cpi", "cpi-context"] }

[target.'cfg(not(target_os = "solana"))'.dependencies]
solana-sdk = "1.18.11"

[dev-dependencies]
solana-program-test = "1.18.11"
light-test-utils = { version = "0.1.4", path = "../../../../test-utils", features = ["cpi-context"] }
light-test-utils = { version = "0.2.0", path = "../../../../test-utils", features = ["cpi-context"] }
reqwest = "0.12"
tokio = "1.36.0"
light-prover-client = { path = "../../../../circuit-lib/light-prover-client", version = "0.1.4" }
light-prover-client = { path = "../../../../circuit-lib/light-prover-client", version = "0.2.0" }
num-bigint = "0.4.4"
num-traits = "0.2.18"
spl-token = "3.5.0"
Expand Down
2 changes: 1 addition & 1 deletion forester/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forester"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion hasher.rs/src/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-wasm-hasher"
version = "0.1.4"
version = "0.2.0"
edition = "2021"
description = "WASM wrapper for blake2 and Poseidon hashing"
repository = "https://github.com/Lightprotocol/light-protocol"
Expand Down
2 changes: 1 addition & 1 deletion heap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-heap"
version = "0.1.5"
version = "0.2.0"
description = "Custom heap allocator used in Light Protocol"
repository = "https://github.com/Lightprotocol/light-protocol"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions js/compressed-token/src/idl/light_compressed_token.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export type LightCompressedToken = {
version: '0.3.4';
version: '0.4.0';
name: 'light_compressed_token';
instructions: [
{
Expand Down Expand Up @@ -1381,7 +1381,7 @@ export type LightCompressedToken = {
];
};
export const IDL: LightCompressedToken = {
version: '0.3.4',
version: '0.4.0',
name: 'light_compressed_token',
instructions: [
{
Expand Down
4 changes: 2 additions & 2 deletions js/stateless.js/src/idls/account_compression.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export type AccountCompression = {
version: '0.3.5';
version: '0.4.0';
name: 'account_compression';
constants: [
{
Expand Down Expand Up @@ -1079,7 +1079,7 @@ export type AccountCompression = {
};

export const IDL: AccountCompression = {
version: '0.3.5',
version: '0.4.0',
name: 'account_compression',
constants: [
{
Expand Down
Loading

0 comments on commit 526dcfa

Please sign in to comment.