diff --git a/CHANGELOG.md b/CHANGELOG.md index b274acfda21..0129dc14131 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,16 @@ ## Unreleased -- Minimize the scope of the `native_lib` features. The code generated by `wayland-scanner` is - now independent of this feature, making `wayland-protocols` also independent of it, and - avoiding it to pollute dependency trees in non-trivial ways. +## 0.23.0 -- 2019-02-17 -# 0.22.2 -- 2019-02-16 +#### Breaking Changes + +- Minimize the scope of the `native_lib` features to `wayland-client` and `wayland-server`. + The code generated by `wayland-scanner` is now independent of this feature, making + `wayland-protocols` also independent of it, and avoiding it to pollute dependency trees in + non-trivial ways. + +## 0.22.2 -- 2019-02-16 - [protocols] Update `wlr-protocols` (`data-control` version 2). diff --git a/wayland-client/Cargo.toml b/wayland-client/Cargo.toml index 861dae6b0c2..e7755033127 100644 --- a/wayland-client/Cargo.toml +++ b/wayland-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-client" -version = "0.22.2" +version = "0.23.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.22.2", path = "../wayland-commons" } -wayland-sys = { version = "0.22.2", path = "../wayland-sys" } +wayland-commons = { version = "0.23.0", path = "../wayland-commons" } +wayland-sys = { version = "0.23.0", path = "../wayland-sys" } 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.22.2", path = "../wayland-scanner" } +wayland-scanner = { version = "0.23.0", path = "../wayland-scanner" } [dev-dependencies] byteorder = "1.0" diff --git a/wayland-commons/Cargo.toml b/wayland-commons/Cargo.toml index 59a51f82d81..23dcd9a99a4 100644 --- a/wayland-commons/Cargo.toml +++ b/wayland-commons/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-commons" -version = "0.22.2" +version = "0.23.0" authors = ["Victor Berger "] repository = "https://github.com/smithay/wayland-rs" documentation = "https://smithay.github.io/wayland-rs/wayland_commons/" @@ -13,6 +13,6 @@ keywords = ["wayland"] travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-sys = { version = "0.22.2", path = "../wayland-sys" } +wayland-sys = { version = "0.23.0", path = "../wayland-sys" } nix = "0.12" diff --git a/wayland-protocols/Cargo.toml b/wayland-protocols/Cargo.toml index 46913b102e1..0973bf2017f 100644 --- a/wayland-protocols/Cargo.toml +++ b/wayland-protocols/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols" -version = "0.22.2" +version = "0.23.0" documentation = "https://smithay.github.io/wayland-rs/wayland_protocols/" repository = "https://github.com/smithay/wayland-rs" authors = ["Victor Berger "] @@ -14,13 +14,13 @@ categories = ["gui", "api-bindings"] travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-commons = { version = "0.22.2", path = "../wayland-commons" } -wayland-client = { version = "0.22.2", path = "../wayland-client", optional = true } -wayland-server = { version = "0.22.2", path = "../wayland-server", optional = true } +wayland-commons = { version = "0.23.0", path = "../wayland-commons" } +wayland-client = { version = "0.23.0", path = "../wayland-client", optional = true } +wayland-server = { version = "0.23.0", path = "../wayland-server", optional = true } bitflags = "1.0" [build-dependencies] -wayland-scanner = { version = "0.22.2", path = "../wayland-scanner" } +wayland-scanner = { version = "0.23.0", path = "../wayland-scanner" } [features] client = ["wayland-client"] diff --git a/wayland-scanner/Cargo.toml b/wayland-scanner/Cargo.toml index 1406dc8bdef..ce44c909433 100644 --- a/wayland-scanner/Cargo.toml +++ b/wayland-scanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-scanner" -version = "0.22.2" +version = "0.23.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 32016abfd69..7610888aaf6 100644 --- a/wayland-server/Cargo.toml +++ b/wayland-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-server" -version = "0.22.2" +version = "0.23.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.22.2", path = "../wayland-commons" } -wayland-sys = { version = "0.22.2", path = "../wayland-sys" } +wayland-commons = { version = "0.23.0", path = "../wayland-commons" } +wayland-sys = { version = "0.23.0", path = "../wayland-sys" } 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.22.2", path = "../wayland-scanner" } +wayland-scanner = { version = "0.23.0", path = "../wayland-scanner" } [features] native_lib = [ "wayland-sys/server" ] diff --git a/wayland-sys/Cargo.toml b/wayland-sys/Cargo.toml index 0a16c70986e..437dc7e0b00 100644 --- a/wayland-sys/Cargo.toml +++ b/wayland-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-sys" -version = "0.22.2" +version = "0.23.0" repository = "https://github.com/smithay/wayland-rs" documentation = "https://smithay.github.io/wayland-rs/wayland_sys/" authors = ["Victor Berger "]