File tree Expand file tree Collapse file tree 9 files changed +26
-24
lines changed
Expand file tree Collapse file tree 9 files changed +26
-24
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ ## 0.24.0 -- 2019-09-14
6+
57- [ client/server] The implementations system is replaced by a more versatile ` Filter ` API, which allows
68 registering more than one wayland object to the same callback
79- [ client/server] Introduction of the ` Main<I> ` (and ` Attached<I> ` client-side) types, for type-system-level
Original file line number Diff line number Diff line change 11[package ]
22name = " wayland-client"
3- version = " 0.24.0-pre "
3+ version = " 0.24.0"
44documentation = " https://smithay.github.io/wayland-rs/wayland_client/"
55repository = " https://github.com/smithay/wayland-rs"
66authors = [" Victor Berger <victor.berger@m4x.org>" ]
@@ -15,16 +15,16 @@ build = "build.rs"
1515travis-ci = { repository = " Smithay/wayland-rs" }
1616
1717[dependencies ]
18- wayland-commons = { version = " 0.24.0-pre " , path = " ../wayland-commons" }
19- wayland-sys = { version = " 0.24.0-pre " , path = " ../wayland-sys" }
18+ wayland-commons = { version = " 0.24.0" , path = " ../wayland-commons" }
19+ wayland-sys = { version = " 0.24.0" , path = " ../wayland-sys" }
2020nix = " 0.15"
2121downcast-rs = " 1.0"
2222bitflags = " 1.0"
2323libc = " 0.2"
2424scoped-tls = { version = " 1.0" , optional = true }
2525
2626[build-dependencies ]
27- wayland-scanner = { version = " 0.24.0-pre " , path = " ../wayland-scanner" }
27+ wayland-scanner = { version = " 0.24.0" , path = " ../wayland-scanner" }
2828
2929[dev-dependencies ]
3030byteorder = " 1.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " wayland-commons"
3- version = " 0.24.0-pre "
3+ version = " 0.24.0"
44authors = [" Victor Berger <victor.berger@m4x.org>" ]
55repository = " https://github.com/smithay/wayland-rs"
66documentation = " https://smithay.github.io/wayland-rs/wayland_commons/"
@@ -14,7 +14,7 @@ keywords = ["wayland"]
1414travis-ci = { repository = " Smithay/wayland-rs" }
1515
1616[dependencies ]
17- wayland-sys = { version = " 0.24.0-pre " , path = " ../wayland-sys" }
17+ wayland-sys = { version = " 0.24.0" , path = " ../wayland-sys" }
1818nix = " 0.15"
1919spin = " 0.5"
20- smallvec = " 0.6"
20+ smallvec = " 0.6"
Original file line number Diff line number Diff line change 11[package ]
22name = " wayland-cursor"
3- version = " 0.24.0-pre "
3+ version = " 0.24.0"
44documentation = " https://smithay.github.io/wayland-rs/wayland_client/"
55repository = " https://github.com/smithay/wayland-rs"
66authors = [" Victor Berger <victor.berger@m4x.org>" ]
@@ -14,5 +14,5 @@ description = "Bindings to libwayland-cursor."
1414travis-ci = { repository = " Smithay/wayland-rs" }
1515
1616[dependencies ]
17- wayland-client = { version = " 0.24.0-pre " , path = " ../wayland-client" , features = [" use_system_lib" ] }
18- wayland-sys = { version = " 0.24.0-pre " , path =" ../wayland-sys" , features = [" cursor" ] }
17+ wayland-client = { version = " 0.24.0" , path = " ../wayland-client" , features = [" use_system_lib" ] }
18+ wayland-sys = { version = " 0.24.0" , path =" ../wayland-sys" , features = [" cursor" ] }
Original file line number Diff line number Diff line change 11[package ]
22name = " wayland-egl"
3- version = " 0.24.0-pre "
3+ version = " 0.24.0"
44documentation = " https://smithay.github.io/wayland-rs/wayland_client/"
55repository = " https://github.com/smithay/wayland-rs"
66authors = [" Victor Berger <victor.berger@m4x.org>" ]
@@ -14,5 +14,5 @@ description = "Bindings to libwayland-egl."
1414travis-ci = { repository = " Smithay/wayland-rs" }
1515
1616[dependencies ]
17- wayland-client = { version = " 0.24.0-pre " , path = " ../wayland-client" , features = [" use_system_lib" ] }
18- wayland-sys = { version = " 0.24.0-pre " , path =" ../wayland-sys" , features = [" egl" ] }
17+ wayland-client = { version = " 0.24.0" , path = " ../wayland-client" , features = [" use_system_lib" ] }
18+ wayland-sys = { version = " 0.24.0" , path =" ../wayland-sys" , features = [" egl" ] }
Original file line number Diff line number Diff line change 11[package ]
22name = " wayland-protocols"
3- version = " 0.24.0-pre "
3+ version = " 0.24.0"
44documentation = " https://smithay.github.io/wayland-rs/wayland_protocols/"
55repository = " https://github.com/smithay/wayland-rs"
66authors = [" Victor Berger <victor.berger@m4x.org>" ]
@@ -15,13 +15,13 @@ edition = "2018"
1515travis-ci = { repository = " Smithay/wayland-rs" }
1616
1717[dependencies ]
18- wayland-commons = { version = " 0.24.0-pre " , path = " ../wayland-commons" }
19- wayland-client = { version = " 0.24.0-pre " , path = " ../wayland-client" , optional = true }
20- wayland-server = { version = " 0.24.0-pre " , path = " ../wayland-server" , optional = true }
18+ wayland-commons = { version = " 0.24.0" , path = " ../wayland-commons" }
19+ wayland-client = { version = " 0.24.0" , path = " ../wayland-client" , optional = true }
20+ wayland-server = { version = " 0.24.0" , path = " ../wayland-server" , optional = true }
2121bitflags = " 1.0"
2222
2323[build-dependencies ]
24- wayland-scanner = { version = " 0.24.0-pre " , path = " ../wayland-scanner" }
24+ wayland-scanner = { version = " 0.24.0" , path = " ../wayland-scanner" }
2525
2626[features ]
2727client = [" wayland-client" ]
Original file line number Diff line number Diff line change 11[package ]
22name = " wayland-scanner"
3- version = " 0.24.0-pre "
3+ version = " 0.24.0"
44authors = [" Victor Berger <victor.berger@m4x.org>" ]
55repository = " https://github.com/smithay/wayland-rs"
66documentation = " https://smithay.github.io/wayland-rs/wayland_scanner/"
Original file line number Diff line number Diff line change 11[package ]
22name = " wayland-server"
3- version = " 0.24.0-pre "
3+ version = " 0.24.0"
44documentation = " https://smithay.github.io/wayland-rs/wayland_server/"
55repository = " https://github.com/smithay/wayland-rs"
66authors = [" Victor Berger <victor.berger@m4x.org>" ]
@@ -15,8 +15,8 @@ edition = "2018"
1515travis-ci = { repository = " Smithay/wayland-rs" }
1616
1717[dependencies ]
18- wayland-commons = { version = " 0.24.0-pre " , path = " ../wayland-commons" }
19- wayland-sys = { version = " 0.24.0-pre " , path = " ../wayland-sys" }
18+ wayland-commons = { version = " 0.24.0" , path = " ../wayland-commons" }
19+ wayland-sys = { version = " 0.24.0" , path = " ../wayland-sys" }
2020bitflags = " 1.0"
2121downcast-rs = " 1.0"
2222libc = " 0.2"
@@ -25,7 +25,7 @@ lazy_static = { version = "1.0", optional = true}
2525parking_lot = " 0.9"
2626
2727[build-dependencies ]
28- wayland-scanner = { version = " 0.24.0-pre " , path = " ../wayland-scanner" }
28+ wayland-scanner = { version = " 0.24.0" , path = " ../wayland-scanner" }
2929
3030[features ]
3131use_system_lib = [ " wayland-sys/server" , " lazy_static" ]
Original file line number Diff line number Diff line change 11[package ]
22name = " wayland-sys"
3- version = " 0.24.0-pre "
3+ version = " 0.24.0"
44repository = " https://github.com/smithay/wayland-rs"
55documentation = " https://smithay.github.io/wayland-rs/wayland_sys/"
66authors = [" Victor Berger <victor.berger@m4x.org>" ]
You can’t perform that action at this time.
0 commit comments