From e49a35a3408da47880adc9c62c9baeef40c9893b Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sat, 9 Dec 2023 10:40:09 +0100 Subject: [PATCH] Update the version number for the next release Signed-off-by: Uli Schlachter --- doc/changelog.md | 2 +- x11rb-async/Cargo.toml | 6 +++--- x11rb-protocol/Cargo.toml | 2 +- x11rb/Cargo.toml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/changelog.md b/doc/changelog.md index 176e2ecd..c4157212 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -1,4 +1,4 @@ -# Version 0.13.0 (2023-XX-XX) +# Version 0.13.0 (2023-12-09) New features: * A bitmask enum in the generates code has new methods `bits()` for conversion diff --git a/x11rb-async/Cargo.toml b/x11rb-async/Cargo.toml index aba5a489..fda1745e 100644 --- a/x11rb-async/Cargo.toml +++ b/x11rb-async/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "x11rb-async" -version = "0.12.0" +version = "0.13.0" description = "Async Rust bindings to X11" authors = [ "Uli Schlachter ", @@ -21,8 +21,8 @@ blocking = "1.3.0" event-listener = "2.5.3" futures-lite = "1" tracing = { version = "0.1.33", default-features = false } -x11rb = { version = "0.12.0", path = "../x11rb", default-features = false } -x11rb-protocol = { version = "0.12.0", default-features = false, features = ["std"], path = "../x11rb-protocol" } +x11rb = { version = "0.13.0", path = "../x11rb", default-features = false } +x11rb-protocol = { version = "0.13.0", default-features = false, features = ["std"], path = "../x11rb-protocol" } [features] # Enable this feature to enable all the X11 extensions diff --git a/x11rb-protocol/Cargo.toml b/x11rb-protocol/Cargo.toml index 768800d3..0e2969d8 100644 --- a/x11rb-protocol/Cargo.toml +++ b/x11rb-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "x11rb-protocol" -version = "0.12.0" +version = "0.13.0" description = "Rust bindings to X11" authors = [ "Uli Schlachter ", diff --git a/x11rb/Cargo.toml b/x11rb/Cargo.toml index a745cece..b82f3946 100644 --- a/x11rb/Cargo.toml +++ b/x11rb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "x11rb" -version = "0.12.0" +version = "0.13.0" description = "Rust bindings to X11" authors = [ "Uli Schlachter ", @@ -15,7 +15,7 @@ license = "MIT OR Apache-2.0" keywords = ["xcb", "X11"] [dependencies] -x11rb-protocol = { version = "0.12.0", default-features = false, features = ["std"], path = "../x11rb-protocol" } +x11rb-protocol = { version = "0.13.0", default-features = false, features = ["std"], path = "../x11rb-protocol" } libc = { version = "0.2", optional = true } libloading = { version = "0.8.0", optional = true } once_cell = { version = "1.17", optional = true }