diff --git a/CHANGELOG.md b/CHANGELOG.md index 0234b4884e7..5d32037c4ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.22.0 -- 2019-01-31 + - [scanner] Generate `EventHandler` and `RequestHandler` traits for trait-based event and request handling (as opposed to manually matching on enums). - **Breaking** [client/server] Change `NewProxy/NewRequest::implement()` to accept diff --git a/wayland-client/Cargo.toml b/wayland-client/Cargo.toml index 7437a463241..656a346c3bd 100644 --- a/wayland-client/Cargo.toml +++ b/wayland-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-client" -version = "0.21.11" +version = "0.22.0" documentation = "https://smithay.github.io/wayland-rs/wayland_client/" repository = "https://github.com/smithay/wayland-rs" authors = ["Victor Berger "] @@ -14,8 +14,8 @@ build = "build.rs" travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-commons = { version = "0.21.11", path = "../wayland-commons" } -wayland-sys = { version = "0.21.11", features = ["client"], path = "../wayland-sys", optional = true } +wayland-commons = { version = "0.22.0", path = "../wayland-commons" } +wayland-sys = { version = "0.22.0", features = ["client"], path = "../wayland-sys", optional = true } nix = "0.12" downcast-rs = "1.0" bitflags = "1.0" @@ -24,7 +24,7 @@ calloop = { version = ">=0.3.1, <0.5", optional = true } mio = { version = "0.6.0", optional = true } [build-dependencies] -wayland-scanner = { version = "0.21.11", path = "../wayland-scanner" } +wayland-scanner = { version = "0.22.0", path = "../wayland-scanner" } [dev-dependencies] byteorder = "1.0" diff --git a/wayland-commons/Cargo.toml b/wayland-commons/Cargo.toml index 63d8e624202..f4aa00f5d91 100644 --- a/wayland-commons/Cargo.toml +++ b/wayland-commons/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-commons" -version = "0.21.11" +version = "0.22.0" authors = ["Victor Berger "] repository = "https://github.com/smithay/wayland-rs" documentation = "https://smithay.github.io/wayland-rs/wayland_commons/" @@ -13,7 +13,7 @@ keywords = ["wayland"] travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-sys = { version = "0.21.11", path = "../wayland-sys", optional = true } +wayland-sys = { version = "0.22.0", path = "../wayland-sys", optional = true } nix = "0.12" [features] diff --git a/wayland-protocols/Cargo.toml b/wayland-protocols/Cargo.toml index 66b77373889..51d3cf1d2d6 100644 --- a/wayland-protocols/Cargo.toml +++ b/wayland-protocols/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols" -version = "0.21.11" +version = "0.22.0" documentation = "https://smithay.github.io/wayland-rs/wayland_protocols/" repository = "https://github.com/smithay/wayland-rs" authors = ["Victor Berger "] @@ -14,14 +14,14 @@ categories = ["gui", "api-bindings"] travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-commons = { version = "0.21.11", path = "../wayland-commons" } -wayland-sys = { version = "0.21.11", path = "../wayland-sys", optional = true } -wayland-client = { version = "0.21.11", path = "../wayland-client", optional = true } -wayland-server = { version = "0.21.11", path = "../wayland-server", optional = true } +wayland-commons = { version = "0.22.0", path = "../wayland-commons" } +wayland-sys = { version = "0.22.0", path = "../wayland-sys", optional = true } +wayland-client = { version = "0.22.0", path = "../wayland-client", optional = true } +wayland-server = { version = "0.22.0", path = "../wayland-server", optional = true } bitflags = "1.0" [build-dependencies] -wayland-scanner = { version = "0.21.11", path = "../wayland-scanner" } +wayland-scanner = { version = "0.22.0", path = "../wayland-scanner" } [features] client = ["wayland-client"] diff --git a/wayland-scanner/Cargo.toml b/wayland-scanner/Cargo.toml index e8eaf15d4f1..2913c6917bf 100644 --- a/wayland-scanner/Cargo.toml +++ b/wayland-scanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-scanner" -version = "0.21.11" +version = "0.22.0" authors = ["Victor Berger "] repository = "https://github.com/smithay/wayland-rs" documentation = "https://smithay.github.io/wayland-rs/wayland_scanner/" diff --git a/wayland-server/Cargo.toml b/wayland-server/Cargo.toml index c2001fb262b..ea0b7745614 100644 --- a/wayland-server/Cargo.toml +++ b/wayland-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-server" -version = "0.21.11" +version = "0.22.0" documentation = "https://smithay.github.io/wayland-rs/wayland_server/" repository = "https://github.com/smithay/wayland-rs" authors = ["Victor Berger "] @@ -14,8 +14,8 @@ build = "build.rs" travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-commons = { version = "0.21.11", path = "../wayland-commons" } -wayland-sys = { version = "0.21.11", features = ["server"], path = "../wayland-sys", optional = true } +wayland-commons = { version = "0.22.0", path = "../wayland-commons" } +wayland-sys = { version = "0.22.0", features = ["server"], path = "../wayland-sys", optional = true } bitflags = "1.0" downcast-rs = "1.0" libc = "0.2" @@ -24,7 +24,7 @@ mio = "0.6" calloop = ">=0.3.1, <0.5" [build-dependencies] -wayland-scanner = { version = "0.21.11", path = "../wayland-scanner" } +wayland-scanner = { version = "0.22.0", path = "../wayland-scanner" } [features] native_lib = [ "wayland-sys", "wayland-commons/native_lib" ] diff --git a/wayland-sys/Cargo.toml b/wayland-sys/Cargo.toml index 4964628a9c0..f2c6fc2e3d7 100644 --- a/wayland-sys/Cargo.toml +++ b/wayland-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-sys" -version = "0.21.11" +version = "0.22.0" repository = "https://github.com/smithay/wayland-rs" documentation = "https://smithay.github.io/wayland-rs/wayland_sys/" authors = ["Victor Berger "]