Skip to content

Commit 479752d

Browse files
committed
chore: bump versions
1 parent a581252 commit 479752d

File tree

13 files changed

+21
-21
lines changed

13 files changed

+21
-21
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ They can be enabled in your `Cargo.toml`:
1515

1616
```toml
1717
[dependencies]
18-
qapi = { version = "0.13", features = [ "qmp" ] }
18+
qapi = { version = "0.14", features = [ "qmp" ] }
1919
```
2020

2121
### Examples

codegen/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qapi-codegen"
3-
version = "0.11.0" # keep in sync with html_root_url
3+
version = "0.11.1" # keep in sync with html_root_url
44
authors = ["arcnmx"]
55
edition = "2018"
66

@@ -17,4 +17,4 @@ travis-ci = { repository = "arcnmx/qapi-rs" }
1717
maintenance = { status = "passively-maintained" }
1818

1919
[dependencies]
20-
qapi-parser = { version = "^0.9.0", path = "../parser" }
20+
qapi-parser = { version = "0.10", path = "../parser" }

codegen/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/qapi-codegen/0.11.0")]
1+
#![doc(html_root_url = "https://docs.rs/qapi-codegen/0.11.1")]
22

33
//! Generates Rust types for the [QAPI schema language](https://qemu-project.gitlab.io/qemu/devel/qapi-code-gen.html#the-qapi-schema-language)
44

examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
publish = false
77

88
[dependencies]
9-
qapi = { version = "0.13", path = "../qapi", features = ["qmp", "qga", "async-tokio-all"] }
9+
qapi = { version = "0.14", path = "../qapi", features = ["qmp", "qga", "async-tokio-all"] }
1010
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread"] }
1111
futures = "0.3"
1212
env_logger = "0.10"

parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qapi-parser"
3-
version = "0.9.1" # keep in sync with html_root_url
3+
version = "0.10.0" # keep in sync with html_root_url
44
authors = ["arcnmx"]
55
edition = "2018"
66

parser/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/qapi-parser/0.9.1")]
1+
#![doc(html_root_url = "https://docs.rs/qapi-parser/0.10.0")]
22

33
pub mod spec {
44
use std::fmt;

qapi/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qapi"
3-
version = "0.13.0" # keep in sync with README and html_root_url
3+
version = "0.14.0" # keep in sync with README and html_root_url
44
authors = ["arcnmx"]
55
edition = "2018"
66

@@ -32,8 +32,8 @@ memchr = { version = "^2.3.3", optional = true }
3232
bytes = { version = "^1.0.0", optional = true }
3333

3434
qapi-spec = { version = "0.3", path = "../spec" }
35-
qapi-qga = { version = "0.11", path = "../qga", optional = true }
36-
qapi-qmp = { version = "0.13", path = "../qmp", optional = true }
35+
qapi-qga = { version = "0.12", path = "../qga", optional = true }
36+
qapi-qmp = { version = "0.14", path = "../qmp", optional = true }
3737

3838
[features]
3939
qga = ["qapi-qga"]

qapi/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/qapi/0.13.0")]
1+
#![doc(html_root_url = "https://docs.rs/qapi/0.14.0")]
22

33
#[cfg(feature = "qapi-qmp")]
44
pub use qapi_qmp as qmp;

qga/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qapi-qga"
3-
version = "0.11.0" # keep in sync with html_root_url
3+
version = "0.12.0" # keep in sync with html_root_url
44
build = "build.rs"
55
authors = ["arcnmx"]
66
edition = "2018"

qga/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![allow(non_snake_case, non_camel_case_types)]
2-
#![doc(html_root_url = "https://docs.rs/qapi-qga/0.11.0")]
2+
#![doc(html_root_url = "https://docs.rs/qapi-qga/0.12.0")]
33

44
include!(concat!(env!("OUT_DIR"), "/qga.rs"));
55

qmp/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qapi-qmp"
3-
version = "0.13.0" # keep in sync with html_root_url
3+
version = "0.14.0" # keep in sync with html_root_url
44
build = "build.rs"
55
authors = ["arcnmx"]
66
edition = "2018"
@@ -18,7 +18,7 @@ travis-ci = { repository = "arcnmx/qapi-rs" }
1818
maintenance = { status = "passively-maintained" }
1919

2020
[build-dependencies]
21-
qapi-codegen = { version = "0.11", path = "../codegen" }
21+
qapi-codegen = { version = "0.11.1", path = "../codegen" }
2222

2323
[dependencies]
2424
serde = { version = "^1.0.27", features = [ "derive" ] }

qmp/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![allow(non_snake_case, non_camel_case_types)]
2-
#![doc(html_root_url = "https://docs.rs/qapi-qmp/0.13.0")]
2+
#![doc(html_root_url = "https://docs.rs/qapi-qmp/0.14.0")]
33
#![allow(deprecated)]
44

55
use std::io;

0 commit comments

Comments
 (0)