Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎁 prepare release 0.9.0 #320

Merged
merged 2 commits into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## Unreleased
## 0.9.0 (2023-10-09)

- Add options to customize behavior of unknown Wasm imports ([#313](https://github.com/fastly/Viceroy/pull/313))
- Lower Hostcall error log level to DEBUG ([#314](https://github.com/fastly/Viceroy/pull/314))
- Add perfmap profiling strategy ([#316](https://github.com/fastly/Viceroy/pull/316))
- Update to wasmtime-13.0.0 ([#317](https://github.com/fastly/Viceroy/pull/317))
- Revamp profile handling CLI flags ([#318](https://github.com/fastly/Viceroy/pull/318))

## 0.8.1 (2023-09-18)

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "viceroy"
description = "Viceroy is a local testing daemon for Compute@Edge."
version = "0.8.2"
version = "0.9.0"
authors = ["Fastly"]
readme = "../README.md"
edition = "2021"
Expand Down Expand Up @@ -44,7 +44,7 @@ tokio-rustls = { workspace = true }
tracing = { workspace = true }
tracing-futures = { workspace = true }
tracing-subscriber = { version = "^0.3.16", features = ["env-filter", "fmt"] }
viceroy-lib = { path = "../lib", version = "^0.8.2" }
viceroy-lib = { path = "../lib", version = "^0.9.0" }
wat = "^1.0.38"
wasi-common = { workspace = true }
wasmtime = { workspace = true }
Expand Down
33 changes: 11 additions & 22 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 lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "viceroy-lib"
version = "0.8.2"
version = "0.9.0"
description = "Viceroy implementation details."
authors = ["Fastly"]
edition = "2021"
Expand Down
8 changes: 4 additions & 4 deletions test-fixtures/Cargo.lock

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