Skip to content

Commit fa6bac1

Browse files
committed
version 0.22.0
1 parent a32ef1b commit fa6bac1

File tree

7 files changed

+20
-18
lines changed

7 files changed

+20
-18
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.22.0 -- 2019-01-31
6+
57
- [scanner] Generate `EventHandler` and `RequestHandler` traits for trait-based event
68
and request handling (as opposed to manually matching on enums).
79
- **Breaking** [client/server] Change `NewProxy/NewRequest::implement()` to accept

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.21.11"
3+
version = "0.22.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,8 +14,8 @@ build = "build.rs"
1414
travis-ci = { repository = "Smithay/wayland-rs" }
1515

1616
[dependencies]
17-
wayland-commons = { version = "0.21.11", path = "../wayland-commons" }
18-
wayland-sys = { version = "0.21.11", features = ["client"], path = "../wayland-sys", optional = true }
17+
wayland-commons = { version = "0.22.0", path = "../wayland-commons" }
18+
wayland-sys = { version = "0.22.0", features = ["client"], path = "../wayland-sys", optional = true }
1919
nix = "0.12"
2020
downcast-rs = "1.0"
2121
bitflags = "1.0"
@@ -24,7 +24,7 @@ calloop = { version = ">=0.3.1, <0.5", optional = true }
2424
mio = { version = "0.6.0", optional = true }
2525

2626
[build-dependencies]
27-
wayland-scanner = { version = "0.21.11", path = "../wayland-scanner" }
27+
wayland-scanner = { version = "0.22.0", path = "../wayland-scanner" }
2828

2929
[dev-dependencies]
3030
byteorder = "1.0"

wayland-commons/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-commons"
3-
version = "0.21.11"
3+
version = "0.22.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/"
@@ -13,7 +13,7 @@ keywords = ["wayland"]
1313
travis-ci = { repository = "Smithay/wayland-rs" }
1414

1515
[dependencies]
16-
wayland-sys = { version = "0.21.11", path = "../wayland-sys", optional = true }
16+
wayland-sys = { version = "0.22.0", path = "../wayland-sys", optional = true }
1717
nix = "0.12"
1818

1919
[features]

wayland-protocols/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wayland-protocols"
3-
version = "0.21.11"
3+
version = "0.22.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>"]
@@ -14,14 +14,14 @@ categories = ["gui", "api-bindings"]
1414
travis-ci = { repository = "Smithay/wayland-rs" }
1515

1616
[dependencies]
17-
wayland-commons = { version = "0.21.11", path = "../wayland-commons" }
18-
wayland-sys = { version = "0.21.11", path = "../wayland-sys", optional = true }
19-
wayland-client = { version = "0.21.11", path = "../wayland-client", optional = true }
20-
wayland-server = { version = "0.21.11", path = "../wayland-server", optional = true }
17+
wayland-commons = { version = "0.22.0", path = "../wayland-commons" }
18+
wayland-sys = { version = "0.22.0", path = "../wayland-sys", optional = true }
19+
wayland-client = { version = "0.22.0", path = "../wayland-client", optional = true }
20+
wayland-server = { version = "0.22.0", path = "../wayland-server", optional = true }
2121
bitflags = "1.0"
2222

2323
[build-dependencies]
24-
wayland-scanner = { version = "0.21.11", path = "../wayland-scanner" }
24+
wayland-scanner = { version = "0.22.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.21.11"
3+
version = "0.22.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.21.11"
3+
version = "0.22.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>"]
@@ -14,8 +14,8 @@ build = "build.rs"
1414
travis-ci = { repository = "Smithay/wayland-rs" }
1515

1616
[dependencies]
17-
wayland-commons = { version = "0.21.11", path = "../wayland-commons" }
18-
wayland-sys = { version = "0.21.11", features = ["server"], path = "../wayland-sys", optional = true }
17+
wayland-commons = { version = "0.22.0", path = "../wayland-commons" }
18+
wayland-sys = { version = "0.22.0", features = ["server"], path = "../wayland-sys", optional = true }
1919
bitflags = "1.0"
2020
downcast-rs = "1.0"
2121
libc = "0.2"
@@ -24,7 +24,7 @@ mio = "0.6"
2424
calloop = ">=0.3.1, <0.5"
2525

2626
[build-dependencies]
27-
wayland-scanner = { version = "0.21.11", path = "../wayland-scanner" }
27+
wayland-scanner = { version = "0.22.0", path = "../wayland-scanner" }
2828

2929
[features]
3030
native_lib = [ "wayland-sys", "wayland-commons/native_lib" ]

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.21.11"
3+
version = "0.22.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)