Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
env:
CARGO_TERM_COLOR: always
# When updating RUST_NIGHTLY, also update rust-toolchain.toml and Makefile
RUST_NIGHTLY: nightly-2025-12-31
RUST_NIGHTLY: nightly-2026-02-22

jobs:
rust:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ and this project adheres to

### Changed

- Update Rust nightly to `nightly-2026-02-22`
([#232](https://github.com/LeakIX/zcash-web-wallet/pull/232))

- Replace `key_type` string field with `ViewingKeyType` enum in `ViewingKeyInfo`
for better type safety
([#97](https://github.com/LeakIX/zcash-web-wallet/issues/97))
Expand Down Expand Up @@ -50,6 +53,9 @@ and this project adheres to

### Changed

- Update Rust nightly to `nightly-2026-02-22`
([#232](https://github.com/LeakIX/zcash-web-wallet/pull/232))

- Optimize CI: E2E tests use committed artifacts instead of rebuilding
([#180](https://github.com/LeakIX/zcash-web-wallet/issues/180),
[#184](https://github.com/LeakIX/zcash-web-wallet/pull/184))
Expand Down Expand Up @@ -115,6 +121,9 @@ and this project adheres to

### Changed

- Update Rust nightly to `nightly-2026-02-22`
([#232](https://github.com/LeakIX/zcash-web-wallet/pull/232))

- Consolidate `pages-build` CI job into deploy workflow
([#152](https://github.com/LeakIX/zcash-web-wallet/pull/152))
- Update Rust nightly to `nightly-2025-12-31`
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
WASM_PACK_VERSION := 0.13.1
# When updating RUST_NIGHTLY, also update rust-toolchain.toml and
# .github/workflows/ci.yml
RUST_NIGHTLY := nightly-2025-12-31
RUST_NIGHTLY := nightly-2026-02-22
CARGO := rustup run $(RUST_NIGHTLY) cargo

# Use GNU sed on macOS (install with: brew install gnu-sed)
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2025-12-31"
channel = "nightly-2026-02-22"
components = ["rustfmt", "clippy"]
targets = ["wasm32-unknown-unknown"]