Skip to content

Commit

Permalink
version 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elinorbgr committed Feb 21, 2018
1 parent 45c9ce0 commit 0379ed1
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 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.14.0 - 2017-02-21

- **Breaking** [server] Return the implementation data when the creation of an event source fails

## 0.13.0 - 2017-02-21
Expand Down
6 changes: 3 additions & 3 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.13.0"
version = "0.14.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,13 +14,13 @@ build = "build.rs"
travis-ci = { repository = "smithay/wayland-rs" }

[dependencies]
wayland-sys = { version = "0.13.0", features = ["client"], path = "../wayland-sys" }
wayland-sys = { version = "0.14.0", features = ["client"], path = "../wayland-sys" }
libc = "0.2"
bitflags = "1.0"
token_store = "0.1.1"

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

[dev-dependencies]
byteorder = "1"
Expand Down
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.13.0"
version = "0.14.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-sys = { version = "0.13.0", path = "../wayland-sys" }
wayland-client = { version = "0.13.0", path = "../wayland-client", optional = true, default-features = false }
wayland-server = { version = "0.13.0", path = "../wayland-server", optional = true }
wayland-sys = { version = "0.14.0", path = "../wayland-sys" }
wayland-client = { version = "0.14.0", path = "../wayland-client", optional = true, default-features = false }
wayland-server = { version = "0.14.0", path = "../wayland-server", optional = true }
bitflags = "1.0"

[build-dependencies]
wayland-scanner = { version = "0.13.0", path = "../wayland-scanner" }
wayland-scanner = { version = "0.14.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.13.0"
version = "0.14.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
6 changes: 3 additions & 3 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.13.0"
version = "0.14.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,14 +14,14 @@ build = "build.rs"
travis-ci = { repository = "smithay/wayland-rs" }

[dependencies]
wayland-sys = { version = "0.13.0", features = ["server"], path = "../wayland-sys" }
wayland-sys = { version = "0.14.0", features = ["server"], path = "../wayland-sys" }
libc = "0.2"
nix = "0.9"
bitflags = "1.0"
token_store = "0.1.1"

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

[features]
dlopen = ["wayland-sys/dlopen"]
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.13.0"
version = "0.14.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 0379ed1

Please sign in to comment.