Skip to content

Commit

Permalink
Version 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elinorbgr committed Sep 14, 2019
1 parent b933030 commit 63cf6af
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 24 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.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<I>` (and `Attached<I>` client-side) types, for type-system-level
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.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 <[email protected]>"]
Expand All @@ -15,16 +15,16 @@ 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"
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"
Expand Down
6 changes: 3 additions & 3 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.24.0-pre"
version = "0.24.0"
authors = ["Victor Berger <[email protected]>"]
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://smithay.github.io/wayland-rs/wayland_commons/"
Expand All @@ -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"
smallvec = "0.6"
6 changes: 3 additions & 3 deletions wayland-cursor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"] }
6 changes: 3 additions & 3 deletions wayland-egl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"] }
10 changes: 5 additions & 5 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.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 <[email protected]>"]
Expand All @@ -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"]
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.24.0-pre"
version = "0.24.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.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 <[email protected]>"]
Expand All @@ -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"
Expand All @@ -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" ]
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.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 <[email protected]>"]
Expand Down

0 comments on commit 63cf6af

Please sign in to comment.