From 3c458d4d5739e7b876d9c41926a96090c797e278 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Wed, 7 Jun 2023 11:07:27 -0700 Subject: [PATCH] bump userfaultfd crate version to 0.6.0 The diff from 0.5.1 is a major version bump of the bitflags dep: https://github.com/bytecodealliance/userfaultfd-rs/pull/47 Since bitflags is a proc-macro which generates public impls in the userfaultfd crate, we are treating this update as breaking compatibility, hence bumping the minor 0.x version. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b700393..f282e93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "userfaultfd" -version = "0.5.1" +version = "0.6.0" authors = ["The Wasmtime Project Developers"] edition = "2018" license = "MIT OR Apache-2.0"