Skip to content

Commit 99db9a7

Browse files
committed
bump versions
1 parent 8ccfc89 commit 99db9a7

6 files changed

Lines changed: 16 additions & 33 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Required versions:
3939
- **Rust**: 1.86.0 or later
4040
- **Solana CLI**: 2.2.15
4141
- **Anchor CLI**: 0.31.1
42+
- **Zk compression CLI**: 0.27.0
4243
- **Node.js**: 23.5.0 or later
4344

4445
Install the Light CLI:

account-comparison/programs/account-comparison/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ light-sdk = { git = "https://github.com/lightprotocol/light-protocol.git", rev =
2727
] }
2828

2929
[dev-dependencies]
30-
light-client = { git = "https://github.com/lightprotocol/light-protocol.git", rev = "d298b45a9c8bd94148c172a7d67ae2136fa6c6b1" }
30+
light-client = "0.13.0"
3131
litesvm = "0.6.1"
3232
solana-keypair = "2.2"
3333
solana-message = "2.2"
3434
solana-pubkey = { version = "2.2", features = ["curve25519", "sha2"] }
3535
solana-signer = "2.2"
3636
solana-transaction = "2.2"
37-
light-program-test = { git = "https://github.com/lightprotocol/light-protocol.git", rev = "d298b45a9c8bd94148c172a7d67ae2136fa6c6b1" }
37+
light-program-test = "0.13.1"
3838
tokio = "1.43.0"
3939
solana-sdk = "2.2"
4040

counter/anchor/programs/counter/Cargo.toml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,9 @@ idl-build = ["anchor-lang/idl-build", "light-sdk/idl-build"]
1919

2020
[dependencies]
2121
anchor-lang = "0.31.1"
22-
light-hasher = { version = "3.1.0", features = [
23-
"solana",
24-
] }
25-
light-sdk = { version = "0.13.0", features = [
26-
"anchor",
27-
] }
28-
light-sdk-types = { version = "0.13.0", features = [
29-
"anchor",
30-
] }
22+
light-hasher = { version = "3.1.0", features = ["solana"] }
23+
light-sdk = { version = "0.13.0", features = ["anchor"] }
24+
light-sdk-types = { version = "0.13.0", features = ["anchor"] }
3125

3226
[dev-dependencies]
3327
light-client = "0.13.0"
@@ -36,6 +30,6 @@ solana-message = "2.2"
3630
solana-pubkey = { version = "2.2", features = ["curve25519", "sha2"] }
3731
solana-signer = "2.2"
3832
solana-transaction = "2.2"
39-
light-program-test = "0.13.0"
33+
light-program-test = "0.13.1"
4034
tokio = "1.43.0"
4135
solana-sdk = "2.2"

counter/native/Cargo.toml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,14 @@ default = []
2121
[dependencies]
2222
light-sdk = "0.13.0"
2323
light-sdk-types = "0.13.0"
24-
light-hasher = { version = "3.1.0", features = [
25-
"solana",
26-
] }
24+
light-hasher = { version = "3.1.0", features = ["solana"] }
2725
solana-program = "2.2"
28-
light-macros = { version = "2.1.0", features = [
29-
"solana",
30-
] }
26+
light-macros = { version = "2.1.0", features = ["solana"] }
3127
borsh = "0.10.4"
32-
light-compressed-account = { version = "0.3.0", features = [
33-
"solana",
34-
] }
28+
light-compressed-account = { version = "0.3.0", features = ["solana"] }
3529

3630
[dev-dependencies]
37-
light-program-test = "0.13.0"
31+
light-program-test = "0.13.1"
3832
light-client = "0.13.0"
3933
tokio = "1.43.0"
4034
solana-sdk = "2.2"

counter/pinocchio/Cargo.toml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,20 @@ test-sbf = []
1919
default = []
2020

2121
[dependencies]
22-
light-sdk-pinocchio = { version = "0.13.0", features = [
23-
"v2",
24-
] }
22+
light-sdk-pinocchio = { version = "0.13.0", features = ["v2"] }
2523
light-sdk-types = "0.13.0"
2624
light-hasher = "3.1.0"
2725
pinocchio = "0.8.4"
2826
light-macros = "2.1.0"
2927
borsh = "0.10.4"
3028

3129
[dev-dependencies]
32-
light-program-test = "0.13.0"
30+
light-program-test = "0.13.1"
3331
light-client = "0.13.0"
3432
tokio = "1.43.0"
3533
solana-sdk = "2.2"
36-
light-hasher = { version = "3.1.0", features = [
37-
"solana",
38-
] }
39-
light-compressed-account = { version = "0.3.0", features = [
40-
"solana",
41-
] }
34+
light-hasher = { version = "3.1.0", features = ["solana"] }
35+
light-compressed-account = { version = "0.3.0", features = ["solana"] }
4236
light-sdk = "0.13.0"
4337

4438
[lints.rust.unexpected_cfgs]

create-and-update/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ light-hasher = { version = "3.1.0", features = ["solana"] }
1919
light-sdk-types = "0.13.0"
2020

2121
[dev-dependencies]
22-
light-program-test = "0.13.0"
22+
light-program-test = "0.13.1"
2323
light-client = "0.13.0"
2424
tokio = "1.40.0"
2525
solana-sdk = "2.2"

0 commit comments

Comments
 (0)