Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
arcnmx committed Sep 9, 2024
1 parent 946cef1 commit 020ce1a
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion codegen/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions qapi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand Down Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion qapi/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 2 additions & 2 deletions qga/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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" ] }
Expand Down
2 changes: 1 addition & 1 deletion qga/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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"));

Expand Down
2 changes: 1 addition & 1 deletion qmp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion qmp/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 020ce1a

Please sign in to comment.