diff --git a/Cargo.lock b/Cargo.lock index 8c64a76..9cdb641 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -288,7 +288,7 @@ dependencies = [ [[package]] name = "qapi" -version = "0.14.0" +version = "0.15.0" dependencies = [ "bytes", "futures", @@ -306,7 +306,7 @@ dependencies = [ [[package]] name = "qapi-codegen" -version = "0.11.2" +version = "0.11.3" dependencies = [ "qapi-parser", ] @@ -331,7 +331,7 @@ dependencies = [ [[package]] name = "qapi-qga" -version = "0.12.0" +version = "0.13.0" dependencies = [ "qapi-codegen", "qapi-spec", @@ -340,7 +340,7 @@ dependencies = [ [[package]] name = "qapi-qmp" -version = "0.14.0" +version = "0.15.0" dependencies = [ "qapi-codegen", "qapi-spec", diff --git a/README.md b/README.md index 5e51178..304641b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ They can be enabled in your `Cargo.toml`: ```toml [dependencies] -qapi = { version = "0.14", features = [ "qmp" ] } +qapi = { version = "0.15", features = [ "qmp" ] } ``` ### Examples diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index c3c605e..61416cd 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qapi-codegen" -version = "0.11.2" # keep in sync with html_root_url +version = "0.11.3" # keep in sync with html_root_url authors = ["arcnmx"] edition = "2018" diff --git a/codegen/src/lib.rs b/codegen/src/lib.rs index 564a271..fc8a4ae 100644 --- a/codegen/src/lib.rs +++ b/codegen/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/qapi-codegen/0.11.2")] +#![doc(html_root_url = "https://docs.rs/qapi-codegen/0.11.3")] //! Generates Rust types for the [QAPI schema language](https://qemu-project.gitlab.io/qemu/devel/qapi-code-gen.html#the-qapi-schema-language) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index dc1ea73..01515d4 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" publish = false [dependencies] -qapi = { version = "0.14", path = "../qapi", features = ["qmp", "qga", "async-tokio-all"] } +qapi = { version = "0.15", path = "../qapi", features = ["qmp", "qga", "async-tokio-all"] } tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread"] } futures = "0.3" env_logger = "0.10" diff --git a/qapi/Cargo.toml b/qapi/Cargo.toml index 223abe5..f2afabb 100644 --- a/qapi/Cargo.toml +++ b/qapi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qapi" -version = "0.14.0" # keep in sync with README and html_root_url +version = "0.15.0" # keep in sync with README and html_root_url authors = ["arcnmx"] edition = "2018" @@ -32,8 +32,8 @@ memchr = { version = "^2.3.3", optional = true } bytes = { version = "^1.0.0", optional = true } qapi-spec = { version = "0.3", path = "../spec" } -qapi-qga = { version = "0.12", path = "../qga", optional = true } -qapi-qmp = { version = "0.14", path = "../qmp", optional = true } +qapi-qga = { version = "0.13", path = "../qga", optional = true } +qapi-qmp = { version = "0.15", path = "../qmp", optional = true } [features] qga = ["qapi-qga"] diff --git a/qapi/src/lib.rs b/qapi/src/lib.rs index 6d5233e..cbcc146 100644 --- a/qapi/src/lib.rs +++ b/qapi/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/qapi/0.14.0")] +#![doc(html_root_url = "https://docs.rs/qapi/0.15.0")] #[cfg(feature = "qapi-qmp")] pub use qapi_qmp as qmp; diff --git a/qga/Cargo.toml b/qga/Cargo.toml index 7224d75..2945512 100644 --- a/qga/Cargo.toml +++ b/qga/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qapi-qga" -version = "0.12.0" # keep in sync with html_root_url +version = "0.13.0" # keep in sync with html_root_url build = "build.rs" authors = ["arcnmx"] edition = "2018" @@ -18,7 +18,7 @@ travis-ci = { repository = "arcnmx/qapi-rs" } maintenance = { status = "passively-maintained" } [build-dependencies] -qapi-codegen = { version = "0.11", path = "../codegen" } +qapi-codegen = { version = "0.11.3", path = "../codegen" } [dependencies] serde = { version = "^1.0.27", features = [ "derive" ] } diff --git a/qga/src/lib.rs b/qga/src/lib.rs index 15718f1..9092ea9 100644 --- a/qga/src/lib.rs +++ b/qga/src/lib.rs @@ -1,5 +1,5 @@ #![allow(non_snake_case, non_camel_case_types)] -#![doc(html_root_url = "https://docs.rs/qapi-qga/0.12.0")] +#![doc(html_root_url = "https://docs.rs/qapi-qga/0.13.0")] include!(concat!(env!("OUT_DIR"), "/qga.rs")); diff --git a/qmp/Cargo.toml b/qmp/Cargo.toml index 087187a..3ea413c 100644 --- a/qmp/Cargo.toml +++ b/qmp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qapi-qmp" -version = "0.14.0" # keep in sync with html_root_url +version = "0.15.0" # keep in sync with html_root_url build = "build.rs" authors = ["arcnmx"] edition = "2018" diff --git a/qmp/src/lib.rs b/qmp/src/lib.rs index 217456c..f1d2f4f 100644 --- a/qmp/src/lib.rs +++ b/qmp/src/lib.rs @@ -1,5 +1,5 @@ #![allow(non_snake_case, non_camel_case_types)] -#![doc(html_root_url = "https://docs.rs/qapi-qmp/0.14.0")] +#![doc(html_root_url = "https://docs.rs/qapi-qmp/0.15.0")] #![allow(deprecated)] use std::io;