Skip to content

Commit

Permalink
version 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elinorbgr committed Feb 17, 2019
1 parent 247c705 commit 28ac189
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 21 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@

## Unreleased

- Minimize the scope of the `native_lib` features. The code generated by `wayland-scanner` is
now independent of this feature, making `wayland-protocols` also independent of it, and
avoiding it to pollute dependency trees in non-trivial ways.
## 0.23.0 -- 2019-02-17

# 0.22.2 -- 2019-02-16
#### Breaking Changes

- Minimize the scope of the `native_lib` features to `wayland-client` and `wayland-server`.
The code generated by `wayland-scanner` is now independent of this feature, making
`wayland-protocols` also independent of it, and avoiding it to pollute dependency trees in
non-trivial ways.

## 0.22.2 -- 2019-02-16

- [protocols] Update `wlr-protocols` (`data-control` version 2).

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.22.2"
version = "0.23.0"
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 @@ -14,8 +14,8 @@ build = "build.rs"
travis-ci = { repository = "Smithay/wayland-rs" }

[dependencies]
wayland-commons = { version = "0.22.2", path = "../wayland-commons" }
wayland-sys = { version = "0.22.2", path = "../wayland-sys" }
wayland-commons = { version = "0.23.0", path = "../wayland-commons" }
wayland-sys = { version = "0.23.0", path = "../wayland-sys" }
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.22.2", path = "../wayland-scanner" }
wayland-scanner = { version = "0.23.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.22.2"
version = "0.23.0"
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 @@ -13,6 +13,6 @@ keywords = ["wayland"]
travis-ci = { repository = "Smithay/wayland-rs" }

[dependencies]
wayland-sys = { version = "0.22.2", path = "../wayland-sys" }
wayland-sys = { version = "0.23.0", path = "../wayland-sys" }
nix = "0.12"

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.22.2"
version = "0.23.0"
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 @@ -14,13 +14,13 @@ categories = ["gui", "api-bindings"]
travis-ci = { repository = "Smithay/wayland-rs" }

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

[build-dependencies]
wayland-scanner = { version = "0.22.2", path = "../wayland-scanner" }
wayland-scanner = { version = "0.23.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.22.2"
version = "0.23.0"
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-server"
version = "0.22.2"
version = "0.23.0"
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 @@ -14,8 +14,8 @@ build = "build.rs"
travis-ci = { repository = "Smithay/wayland-rs" }

[dependencies]
wayland-commons = { version = "0.22.2", path = "../wayland-commons" }
wayland-sys = { version = "0.22.2", path = "../wayland-sys" }
wayland-commons = { version = "0.23.0", path = "../wayland-commons" }
wayland-sys = { version = "0.23.0", path = "../wayland-sys" }
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.22.2", path = "../wayland-scanner" }
wayland-scanner = { version = "0.23.0", path = "../wayland-scanner" }

[features]
native_lib = [ "wayland-sys/server" ]
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.22.2"
version = "0.23.0"
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 28ac189

Please sign in to comment.