diff --git a/CHANGELOG.md b/CHANGELOG.md index 49bad909c3e..46a0e7066ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.24.0 -- 2019-09-14 + - [client/server] The implementations system is replaced by a more versatile `Filter` API, which allows registering more than one wayland object to the same callback - [client/server] Introduction of the `Main` (and `Attached` client-side) types, for type-system-level diff --git a/wayland-client/Cargo.toml b/wayland-client/Cargo.toml index 006d2c56de3..53d9d36dcc9 100644 --- a/wayland-client/Cargo.toml +++ b/wayland-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-client" -version = "0.24.0-pre" +version = "0.24.0" documentation = "https://smithay.github.io/wayland-rs/wayland_client/" repository = "https://github.com/smithay/wayland-rs" authors = ["Victor Berger "] @@ -15,8 +15,8 @@ build = "build.rs" travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-commons = { version = "0.24.0-pre", path = "../wayland-commons" } -wayland-sys = { version = "0.24.0-pre", path = "../wayland-sys" } +wayland-commons = { version = "0.24.0", path = "../wayland-commons" } +wayland-sys = { version = "0.24.0", path = "../wayland-sys" } nix = "0.15" downcast-rs = "1.0" bitflags = "1.0" @@ -24,7 +24,7 @@ libc = "0.2" scoped-tls = { version = "1.0", optional = true } [build-dependencies] -wayland-scanner = { version = "0.24.0-pre", path = "../wayland-scanner" } +wayland-scanner = { version = "0.24.0", path = "../wayland-scanner" } [dev-dependencies] byteorder = "1.0" diff --git a/wayland-commons/Cargo.toml b/wayland-commons/Cargo.toml index 3bcaa819d4f..ddb0c7eddd4 100644 --- a/wayland-commons/Cargo.toml +++ b/wayland-commons/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-commons" -version = "0.24.0-pre" +version = "0.24.0" authors = ["Victor Berger "] repository = "https://github.com/smithay/wayland-rs" documentation = "https://smithay.github.io/wayland-rs/wayland_commons/" @@ -14,7 +14,7 @@ keywords = ["wayland"] travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-sys = { version = "0.24.0-pre", path = "../wayland-sys" } +wayland-sys = { version = "0.24.0", path = "../wayland-sys" } nix = "0.15" spin = "0.5" -smallvec = "0.6" \ No newline at end of file +smallvec = "0.6" diff --git a/wayland-cursor/Cargo.toml b/wayland-cursor/Cargo.toml index e6e9c4190c0..b94acc5b46a 100644 --- a/wayland-cursor/Cargo.toml +++ b/wayland-cursor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-cursor" -version = "0.24.0-pre" +version = "0.24.0" documentation = "https://smithay.github.io/wayland-rs/wayland_client/" repository = "https://github.com/smithay/wayland-rs" authors = ["Victor Berger "] @@ -14,5 +14,5 @@ description = "Bindings to libwayland-cursor." travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-client = { version = "0.24.0-pre", path = "../wayland-client", features = ["use_system_lib"] } -wayland-sys = { version = "0.24.0-pre", path="../wayland-sys", features = ["cursor"] } +wayland-client = { version = "0.24.0", path = "../wayland-client", features = ["use_system_lib"] } +wayland-sys = { version = "0.24.0", path="../wayland-sys", features = ["cursor"] } diff --git a/wayland-egl/Cargo.toml b/wayland-egl/Cargo.toml index 1c9f67f4b34..ebcccb3d28e 100644 --- a/wayland-egl/Cargo.toml +++ b/wayland-egl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-egl" -version = "0.24.0-pre" +version = "0.24.0" documentation = "https://smithay.github.io/wayland-rs/wayland_client/" repository = "https://github.com/smithay/wayland-rs" authors = ["Victor Berger "] @@ -14,5 +14,5 @@ description = "Bindings to libwayland-egl." travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-client = { version = "0.24.0-pre", path = "../wayland-client", features = ["use_system_lib"] } -wayland-sys = { version = "0.24.0-pre", path="../wayland-sys", features = ["egl"] } +wayland-client = { version = "0.24.0", path = "../wayland-client", features = ["use_system_lib"] } +wayland-sys = { version = "0.24.0", path="../wayland-sys", features = ["egl"] } diff --git a/wayland-protocols/Cargo.toml b/wayland-protocols/Cargo.toml index 71387f30c0a..ff34703ae26 100644 --- a/wayland-protocols/Cargo.toml +++ b/wayland-protocols/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols" -version = "0.24.0-pre" +version = "0.24.0" documentation = "https://smithay.github.io/wayland-rs/wayland_protocols/" repository = "https://github.com/smithay/wayland-rs" authors = ["Victor Berger "] @@ -15,13 +15,13 @@ edition = "2018" travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-commons = { version = "0.24.0-pre", path = "../wayland-commons" } -wayland-client = { version = "0.24.0-pre", path = "../wayland-client", optional = true } -wayland-server = { version = "0.24.0-pre", path = "../wayland-server", optional = true } +wayland-commons = { version = "0.24.0", path = "../wayland-commons" } +wayland-client = { version = "0.24.0", path = "../wayland-client", optional = true } +wayland-server = { version = "0.24.0", path = "../wayland-server", optional = true } bitflags = "1.0" [build-dependencies] -wayland-scanner = { version = "0.24.0-pre", path = "../wayland-scanner" } +wayland-scanner = { version = "0.24.0", path = "../wayland-scanner" } [features] client = ["wayland-client"] diff --git a/wayland-scanner/Cargo.toml b/wayland-scanner/Cargo.toml index b00ef1a0977..8e54836f3c8 100644 --- a/wayland-scanner/Cargo.toml +++ b/wayland-scanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-scanner" -version = "0.24.0-pre" +version = "0.24.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 b55825e7991..bd0871c76da 100644 --- a/wayland-server/Cargo.toml +++ b/wayland-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-server" -version = "0.24.0-pre" +version = "0.24.0" documentation = "https://smithay.github.io/wayland-rs/wayland_server/" repository = "https://github.com/smithay/wayland-rs" authors = ["Victor Berger "] @@ -15,8 +15,8 @@ edition = "2018" travis-ci = { repository = "Smithay/wayland-rs" } [dependencies] -wayland-commons = { version = "0.24.0-pre", path = "../wayland-commons" } -wayland-sys = { version = "0.24.0-pre", path = "../wayland-sys" } +wayland-commons = { version = "0.24.0", path = "../wayland-commons" } +wayland-sys = { version = "0.24.0", path = "../wayland-sys" } bitflags = "1.0" downcast-rs = "1.0" libc = "0.2" @@ -25,7 +25,7 @@ lazy_static = { version = "1.0", optional = true} parking_lot = "0.9" [build-dependencies] -wayland-scanner = { version = "0.24.0-pre", path = "../wayland-scanner" } +wayland-scanner = { version = "0.24.0", path = "../wayland-scanner" } [features] use_system_lib = [ "wayland-sys/server", "lazy_static" ] diff --git a/wayland-sys/Cargo.toml b/wayland-sys/Cargo.toml index 1b720c07b33..1ba5d341b1a 100644 --- a/wayland-sys/Cargo.toml +++ b/wayland-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-sys" -version = "0.24.0-pre" +version = "0.24.0" repository = "https://github.com/smithay/wayland-rs" documentation = "https://smithay.github.io/wayland-rs/wayland_sys/" authors = ["Victor Berger "]