Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
strategy:
matrix:
rust-toolchain: ["1.87"]
rust-toolchain: ["1.88"]
os: [ubuntu-24.04, macos-14, windows-2022]
arch: [amd64, arm64]
exclude:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update --no-self-update 1.87 && rustup default 1.87
run: rustup update --no-self-update 1.88 && rustup default 1.88
shell: bash
- name: Add wasm32-wasip1 Rust target
run: rustup target add wasm32-wasip1
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update --no-self-update 1.87 && rustup default 1.87
run: rustup update --no-self-update 1.88 && rustup default 1.88
shell: bash
- name: Add wasm32-wasip1 Rust target
run: rustup target add wasm32-wasip1
Expand All @@ -88,7 +88,7 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup update 1.87 && rustup default 1.87
run: rustup update 1.88 && rustup default 1.88
shell: bash
- name: Check crates can be published
run: cargo publish --dry-run --package=viceroy-lib
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## Unreleased
## 0.16.4 (2026-01-26)

- Update to the latest WITs (0.1.0—no more "prerelease") and adapter. ([#574](https://github.com/fastly/Viceroy/pull/574))

## 0.16.3 (2026-01-20)

Expand Down
46 changes: 23 additions & 23 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ include = [
"wasm_abi/compute-at-edge-abi/**/*.witx",
"wasm_abi/data/*.wasm",
]
rust-version = "1.87"
rust-version = "1.88"

[dependencies]
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ include = [
"../doc/logo.png",
"src/**/*"
]
rust-version = "1.87"
rust-version = "1.88"

[[bin]]
name = "viceroy"
Expand Down
46 changes: 23 additions & 23 deletions cli/tests/trap-test/Cargo.lock

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

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 = "1.87"
channel = "1.88"
components = [ "rustfmt" ]
targets = [ "wasm32-wasip1", "wasm32-wasip2" ]
Loading
Loading