Skip to content

Commit 28ac189

Browse files
committed
version 0.23.0
1 parent 247c705 commit 28ac189

File tree

7 files changed

+26
-21
lines changed

7 files changed

+26
-21
lines changed

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22

33
## Unreleased
44

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

9-
# 0.22.2 -- 2019-02-16
7+
#### Breaking Changes
8+
9+
- Minimize the scope of the `native_lib` features to `wayland-client` and `wayland-server`.
10+
The code generated by `wayland-scanner` is now independent of this feature, making
11+
`wayland-protocols` also independent of it, and avoiding it to pollute dependency trees in
12+
non-trivial ways.
13+
14+
## 0.22.2 -- 2019-02-16
1015

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

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

1515
[dependencies]
16-
wayland-sys = { version = "0.22.2", path = "../wayland-sys" }
16+
wayland-sys = { version = "0.23.0", path = "../wayland-sys" }
1717
nix = "0.12"
1818

wayland-protocols/Cargo.toml

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

1616
[dependencies]
17-
wayland-commons = { version = "0.22.2", path = "../wayland-commons" }
18-
wayland-client = { version = "0.22.2", path = "../wayland-client", optional = true }
19-
wayland-server = { version = "0.22.2", path = "../wayland-server", optional = true }
17+
wayland-commons = { version = "0.23.0", path = "../wayland-commons" }
18+
wayland-client = { version = "0.23.0", path = "../wayland-client", optional = true }
19+
wayland-server = { version = "0.23.0", path = "../wayland-server", optional = true }
2020
bitflags = "1.0"
2121

2222
[build-dependencies]
23-
wayland-scanner = { version = "0.22.2", path = "../wayland-scanner" }
23+
wayland-scanner = { version = "0.23.0", path = "../wayland-scanner" }
2424

2525
[features]
2626
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.22.2"
3+
version = "0.23.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.22.2"
3+
version = "0.23.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.22.2", path = "../wayland-commons" }
18-
wayland-sys = { version = "0.22.2", path = "../wayland-sys" }
17+
wayland-commons = { version = "0.23.0", path = "../wayland-commons" }
18+
wayland-sys = { version = "0.23.0", path = "../wayland-sys" }
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.22.2", path = "../wayland-scanner" }
27+
wayland-scanner = { version = "0.23.0", path = "../wayland-scanner" }
2828

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

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.22.2"
3+
version = "0.23.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)