Skip to content

Commit 63cf6af

Browse files
committed
Version 0.24.0
1 parent b933030 commit 63cf6af

File tree

9 files changed

+26
-24
lines changed

9 files changed

+26
-24
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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

wayland-client/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-client"
3-
version = "0.24.0-pre"
3+
version = "0.24.0"
44
documentation = "https://smithay.github.io/wayland-rs/wayland_client/"
55
repository = "https://github.com/smithay/wayland-rs"
66
authors = ["Victor Berger <victor.berger@m4x.org>"]
@@ -15,16 +15,16 @@ build = "build.rs"
1515
travis-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" }
2020
nix = "0.15"
2121
downcast-rs = "1.0"
2222
bitflags = "1.0"
2323
libc = "0.2"
2424
scoped-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]
3030
byteorder = "1.0"

wayland-commons/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-commons"
3-
version = "0.24.0-pre"
3+
version = "0.24.0"
44
authors = ["Victor Berger <victor.berger@m4x.org>"]
55
repository = "https://github.com/smithay/wayland-rs"
66
documentation = "https://smithay.github.io/wayland-rs/wayland_commons/"
@@ -14,7 +14,7 @@ keywords = ["wayland"]
1414
travis-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" }
1818
nix = "0.15"
1919
spin = "0.5"
20-
smallvec = "0.6"
20+
smallvec = "0.6"

wayland-cursor/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-cursor"
3-
version = "0.24.0-pre"
3+
version = "0.24.0"
44
documentation = "https://smithay.github.io/wayland-rs/wayland_client/"
55
repository = "https://github.com/smithay/wayland-rs"
66
authors = ["Victor Berger <victor.berger@m4x.org>"]
@@ -14,5 +14,5 @@ description = "Bindings to libwayland-cursor."
1414
travis-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"] }

wayland-egl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-egl"
3-
version = "0.24.0-pre"
3+
version = "0.24.0"
44
documentation = "https://smithay.github.io/wayland-rs/wayland_client/"
55
repository = "https://github.com/smithay/wayland-rs"
66
authors = ["Victor Berger <victor.berger@m4x.org>"]
@@ -14,5 +14,5 @@ description = "Bindings to libwayland-egl."
1414
travis-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"] }

wayland-protocols/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-protocols"
3-
version = "0.24.0-pre"
3+
version = "0.24.0"
44
documentation = "https://smithay.github.io/wayland-rs/wayland_protocols/"
55
repository = "https://github.com/smithay/wayland-rs"
66
authors = ["Victor Berger <victor.berger@m4x.org>"]
@@ -15,13 +15,13 @@ edition = "2018"
1515
travis-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 }
2121
bitflags = "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]
2727
client = ["wayland-client"]

wayland-scanner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-scanner"
3-
version = "0.24.0-pre"
3+
version = "0.24.0"
44
authors = ["Victor Berger <victor.berger@m4x.org>"]
55
repository = "https://github.com/smithay/wayland-rs"
66
documentation = "https://smithay.github.io/wayland-rs/wayland_scanner/"

wayland-server/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-server"
3-
version = "0.24.0-pre"
3+
version = "0.24.0"
44
documentation = "https://smithay.github.io/wayland-rs/wayland_server/"
55
repository = "https://github.com/smithay/wayland-rs"
66
authors = ["Victor Berger <victor.berger@m4x.org>"]
@@ -15,8 +15,8 @@ edition = "2018"
1515
travis-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" }
2020
bitflags = "1.0"
2121
downcast-rs = "1.0"
2222
libc = "0.2"
@@ -25,7 +25,7 @@ lazy_static = { version = "1.0", optional = true}
2525
parking_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]
3131
use_system_lib = [ "wayland-sys/server", "lazy_static" ]

wayland-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-sys"
3-
version = "0.24.0-pre"
3+
version = "0.24.0"
44
repository = "https://github.com/smithay/wayland-rs"
55
documentation = "https://smithay.github.io/wayland-rs/wayland_sys/"
66
authors = ["Victor Berger <victor.berger@m4x.org>"]

0 commit comments

Comments
 (0)