From f6aed2a5871854bf73c1b949f47adf471f8569f7 Mon Sep 17 00:00:00 2001 From: Agache Date: Thu, 19 May 2022 17:29:26 +0300 Subject: [PATCH] virtio-vsock: changes for v0.1.0 release Signed-off-by: Agache --- crates/devices/virtio-vsock/CHANGELOG.md | 3 +++ crates/devices/virtio-vsock/Cargo.toml | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 crates/devices/virtio-vsock/CHANGELOG.md diff --git a/crates/devices/virtio-vsock/CHANGELOG.md b/crates/devices/virtio-vsock/CHANGELOG.md new file mode 100644 index 00000000..80c8ad70 --- /dev/null +++ b/crates/devices/virtio-vsock/CHANGELOG.md @@ -0,0 +1,3 @@ +# v0.1.0 + +This is the first release of the crate. diff --git a/crates/devices/virtio-vsock/Cargo.toml b/crates/devices/virtio-vsock/Cargo.toml index d83d3fac..7574b0e1 100644 --- a/crates/devices/virtio-vsock/Cargo.toml +++ b/crates/devices/virtio-vsock/Cargo.toml @@ -10,9 +10,10 @@ license = "Apache-2.0 OR BSD-3-Clause" edition = "2018" [dependencies] -virtio-queue = { path = "../../virtio-queue" } +# The `path` part gets stripped when publishing the crate. +virtio-queue = { path = "../../virtio-queue", version = ">=0.3.0" } vm-memory = ">=0.8.0" [dev-dependencies] -virtio-queue = { path = "../../virtio-queue", features = ["test-utils"] } +virtio-queue = { path = "../../virtio-queue", version = ">=0.3.0", features = ["test-utils"] } vm-memory = { version = ">=0.8.0", features = ["backend-mmap", "backend-atomic"] }