Skip to content

Commit

Permalink
v0.28.3
Browse files Browse the repository at this point in the history
  • Loading branch information
elinorbgr committed Dec 30, 2020
1 parent 475297d commit 4ef407e
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 22 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.28.3 -- 2020-12-30

#### Additions

- [server] Introduce `Client::get_resource()` to retrieve a resource from its protocol id and its client
Expand Down
8 changes: 4 additions & 4 deletions wayland-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wayland-client"
version = "0.28.2"
version = "0.28.3"
documentation = "https://smithay.github.io/wayland-rs/wayland_client/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Victor Berger <victor.berger@m4x.org>"]
Expand All @@ -13,16 +13,16 @@ build = "build.rs"
readme = "README.md"

[dependencies]
wayland-commons = { version = "0.28.2", path = "../wayland-commons" }
wayland-sys = { version = "0.28.2", path = "../wayland-sys" }
wayland-commons = { version = "0.28.3", path = "../wayland-commons" }
wayland-sys = { version = "0.28.3", path = "../wayland-sys" }
nix = "0.18"
downcast-rs = "1.0"
bitflags = "1.0"
libc = "0.2"
scoped-tls = { version = "1.0", optional = true }

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

[dev-dependencies]
tempfile = ">=2.0, <4.0"
Expand Down
4 changes: 2 additions & 2 deletions wayland-commons/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wayland-commons"
version = "0.28.2"
version = "0.28.3"
authors = ["Victor Berger <victor.berger@m4x.org>"]
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://smithay.github.io/wayland-rs/wayland_commons/"
Expand All @@ -12,7 +12,7 @@ keywords = ["wayland"]
readme = "README.md"

[dependencies]
wayland-sys = { version = "0.28.2", path = "../wayland-sys" }
wayland-sys = { version = "0.28.3", path = "../wayland-sys" }
nix = "0.18"
once_cell = "1.0"
smallvec = "1"
4 changes: 2 additions & 2 deletions wayland-cursor/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wayland-cursor"
version = "0.28.2"
version = "0.28.3"
documentation = "https://smithay.github.io/wayland-rs/wayland_client/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Victor Berger <victor.berger@m4x.org>"]
Expand All @@ -12,6 +12,6 @@ description = "Bindings to libwayland-cursor."
readme = "README.md"

[dependencies]
wayland-client = { version = "0.28.2", path = "../wayland-client" }
wayland-client = { version = "0.28.3", path = "../wayland-client" }
xcursor = "0.3"
nix = "0.18.0"
6 changes: 3 additions & 3 deletions wayland-egl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wayland-egl"
version = "0.28.2"
version = "0.28.3"
documentation = "https://smithay.github.io/wayland-rs/wayland_client/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Victor Berger <victor.berger@m4x.org>"]
Expand All @@ -12,5 +12,5 @@ description = "Bindings to libwayland-egl."
readme = "README.md"

[dependencies]
wayland-client = { version = "0.28.2", path = "../wayland-client", features = ["use_system_lib"] }
wayland-sys = { version = "0.28.2", path="../wayland-sys", features = ["egl"] }
wayland-client = { version = "0.28.3", path = "../wayland-client", features = ["use_system_lib"] }
wayland-sys = { version = "0.28.3", path="../wayland-sys", features = ["egl"] }
10 changes: 5 additions & 5 deletions wayland-protocols/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wayland-protocols"
version = "0.28.2"
version = "0.28.3"
documentation = "https://smithay.github.io/wayland-rs/wayland_protocols/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Victor Berger <victor.berger@m4x.org>"]
Expand All @@ -13,13 +13,13 @@ edition = "2018"
readme = "README.md"

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

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

[features]
client = ["wayland-client"]
Expand Down
2 changes: 1 addition & 1 deletion wayland-scanner/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wayland-scanner"
version = "0.28.2"
version = "0.28.3"
authors = ["Victor Berger <victor.berger@m4x.org>"]
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
@@ -1,6 +1,6 @@
[package]
name = "wayland-server"
version = "0.28.2"
version = "0.28.3"
documentation = "https://smithay.github.io/wayland-rs/wayland_server/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Victor Berger <victor.berger@m4x.org>"]
Expand All @@ -13,8 +13,8 @@ edition = "2018"
readme = "README.md"

[dependencies]
wayland-commons = { version = "0.28.2", path = "../wayland-commons" }
wayland-sys = { version = "0.28.2", path = "../wayland-sys" }
wayland-commons = { version = "0.28.3", path = "../wayland-commons" }
wayland-sys = { version = "0.28.3", path = "../wayland-sys" }
bitflags = "1.0"
downcast-rs = "1.0"
libc = "0.2"
Expand All @@ -24,7 +24,7 @@ parking_lot = { version = "0.11", optional = true }
scoped-tls = { version = "1.0", optional = true }

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

[features]
use_system_lib = [ "wayland-sys/server", "lazy_static", "scoped-tls", "parking_lot" ]
Expand Down
2 changes: 1 addition & 1 deletion wayland-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wayland-sys"
version = "0.28.2"
version = "0.28.3"
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://smithay.github.io/wayland-rs/wayland_sys/"
authors = ["Victor Berger <victor.berger@m4x.org>"]
Expand Down

0 comments on commit 4ef407e

Please sign in to comment.