Skip to content

Commit

Permalink
version 0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elinorbgr committed Jan 31, 2019
1 parent a32ef1b commit fa6bac1
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 18 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.22.0 -- 2019-01-31

- [scanner] Generate `EventHandler` and `RequestHandler` traits for trait-based event
and request handling (as opposed to manually matching on enums).
- **Breaking** [client/server] Change `NewProxy/NewRequest::implement()` to accept
Expand Down
8 changes: 4 additions & 4 deletions wayland-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-client"
version = "0.21.11"
version = "0.22.0"
documentation = "https://smithay.github.io/wayland-rs/wayland_client/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Victor Berger <[email protected]>"]
Expand All @@ -14,8 +14,8 @@ build = "build.rs"
travis-ci = { repository = "Smithay/wayland-rs" }

[dependencies]
wayland-commons = { version = "0.21.11", path = "../wayland-commons" }
wayland-sys = { version = "0.21.11", features = ["client"], path = "../wayland-sys", optional = true }
wayland-commons = { version = "0.22.0", path = "../wayland-commons" }
wayland-sys = { version = "0.22.0", features = ["client"], path = "../wayland-sys", optional = true }
nix = "0.12"
downcast-rs = "1.0"
bitflags = "1.0"
Expand All @@ -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.21.11", path = "../wayland-scanner" }
wayland-scanner = { version = "0.22.0", path = "../wayland-scanner" }

[dev-dependencies]
byteorder = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions wayland-commons/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-commons"
version = "0.21.11"
version = "0.22.0"
authors = ["Victor Berger <[email protected]>"]
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://smithay.github.io/wayland-rs/wayland_commons/"
Expand All @@ -13,7 +13,7 @@ keywords = ["wayland"]
travis-ci = { repository = "Smithay/wayland-rs" }

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

[features]
Expand Down
12 changes: 6 additions & 6 deletions wayland-protocols/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-protocols"
version = "0.21.11"
version = "0.22.0"
documentation = "https://smithay.github.io/wayland-rs/wayland_protocols/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Victor Berger <[email protected]>"]
Expand All @@ -14,14 +14,14 @@ categories = ["gui", "api-bindings"]
travis-ci = { repository = "Smithay/wayland-rs" }

[dependencies]
wayland-commons = { version = "0.21.11", path = "../wayland-commons" }
wayland-sys = { version = "0.21.11", path = "../wayland-sys", optional = true }
wayland-client = { version = "0.21.11", path = "../wayland-client", optional = true }
wayland-server = { version = "0.21.11", path = "../wayland-server", optional = true }
wayland-commons = { version = "0.22.0", path = "../wayland-commons" }
wayland-sys = { version = "0.22.0", path = "../wayland-sys", optional = true }
wayland-client = { version = "0.22.0", path = "../wayland-client", optional = true }
wayland-server = { version = "0.22.0", path = "../wayland-server", optional = true }
bitflags = "1.0"

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

[features]
client = ["wayland-client"]
Expand Down
2 changes: 1 addition & 1 deletion wayland-scanner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-scanner"
version = "0.21.11"
version = "0.22.0"
authors = ["Victor Berger <[email protected]>"]
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://smithay.github.io/wayland-rs/wayland_scanner/"
Expand Down
8 changes: 4 additions & 4 deletions wayland-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-server"
version = "0.21.11"
version = "0.22.0"
documentation = "https://smithay.github.io/wayland-rs/wayland_server/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Victor Berger <[email protected]>"]
Expand All @@ -14,8 +14,8 @@ build = "build.rs"
travis-ci = { repository = "Smithay/wayland-rs" }

[dependencies]
wayland-commons = { version = "0.21.11", path = "../wayland-commons" }
wayland-sys = { version = "0.21.11", features = ["server"], path = "../wayland-sys", optional = true }
wayland-commons = { version = "0.22.0", path = "../wayland-commons" }
wayland-sys = { version = "0.22.0", features = ["server"], path = "../wayland-sys", optional = true }
bitflags = "1.0"
downcast-rs = "1.0"
libc = "0.2"
Expand All @@ -24,7 +24,7 @@ mio = "0.6"
calloop = ">=0.3.1, <0.5"

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

[features]
native_lib = [ "wayland-sys", "wayland-commons/native_lib" ]
Expand Down
2 changes: 1 addition & 1 deletion wayland-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-sys"
version = "0.21.11"
version = "0.22.0"
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://smithay.github.io/wayland-rs/wayland_sys/"
authors = ["Victor Berger <[email protected]>"]
Expand Down

0 comments on commit fa6bac1

Please sign in to comment.