From e3bbf08297d7f9e03e4e20a308bc0cfa73b89262 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Wed, 3 Jul 2024 15:14:28 -0700 Subject: [PATCH] Bump versions and update changelogs `cargo release --no-publish --no-tag --no-push --execute patch` --- wayland-backend/CHANGELOG.md | 3 ++- wayland-backend/Cargo.toml | 4 ++-- wayland-client/Cargo.toml | 6 +++--- wayland-cursor/Cargo.toml | 4 ++-- wayland-egl/Cargo.toml | 6 +++--- wayland-protocols-misc/Cargo.toml | 12 ++++++------ wayland-protocols-plasma/Cargo.toml | 12 ++++++------ wayland-protocols-wlr/Cargo.toml | 12 ++++++------ wayland-protocols/Cargo.toml | 10 +++++----- wayland-scanner/CHANGELOG.md | 4 ++++ wayland-scanner/Cargo.toml | 2 +- wayland-server/Cargo.toml | 6 +++--- wayland-sys/Cargo.toml | 2 +- wayland-tests/Cargo.toml | 2 +- 14 files changed, 45 insertions(+), 40 deletions(-) diff --git a/wayland-backend/CHANGELOG.md b/wayland-backend/CHANGELOG.md index f415f7faf8a..574147a50ae 100644 --- a/wayland-backend/CHANGELOG.md +++ b/wayland-backend/CHANGELOG.md @@ -2,7 +2,7 @@ ## Unreleased -- backend/sys: client dispatching now always uses distinct event queue +## 0.3.5 -- 2024-07-03 #### Additions @@ -11,6 +11,7 @@ #### Bugfixes - backend/rs: server: Fixed potential deadlock caused by dead clients +- backend/sys: client dispatching now always uses distinct event queue ## 0.3.4 -- 2024-05-30 diff --git a/wayland-backend/Cargo.toml b/wayland-backend/Cargo.toml index 0ba1be61092..742261a0114 100644 --- a/wayland-backend/Cargo.toml +++ b/wayland-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-backend" -version = "0.3.4" +version = "0.3.5" authors = ["Elinor Berger "] edition = "2021" rust-version = "1.65" @@ -14,7 +14,7 @@ readme = "README.md" build = "build.rs" [dependencies] -wayland-sys = { version = "0.31.2", path = "../wayland-sys", features = [] } +wayland-sys = { version = "0.31.3", path = "../wayland-sys", features = [] } log = { version = "0.4", optional = true } scoped-tls = "1.0" downcast-rs = "1.2" diff --git a/wayland-client/Cargo.toml b/wayland-client/Cargo.toml index f4cc44f332f..75eb8609709 100644 --- a/wayland-client/Cargo.toml +++ b/wayland-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-client" -version = "0.31.3" +version = "0.31.4" documentation = "https://docs.rs/wayland-client/" repository = "https://github.com/smithay/wayland-rs" authors = ["Elinor Berger "] @@ -13,8 +13,8 @@ description = "Bindings to the standard C implementation of the wayland protocol readme = "README.md" [dependencies] -wayland-backend = { version = "0.3.4", path = "../wayland-backend" } -wayland-scanner = { version = "0.31.2", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.5", path = "../wayland-backend" } +wayland-scanner = { version = "0.31.3", path = "../wayland-scanner" } bitflags = "2" rustix = { version = "0.38.0", features = ["event"] } log = { version = "0.4", optional = true } diff --git a/wayland-cursor/Cargo.toml b/wayland-cursor/Cargo.toml index d31ab3f9acf..96459efec27 100644 --- a/wayland-cursor/Cargo.toml +++ b/wayland-cursor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-cursor" -version = "0.31.3" +version = "0.31.4" documentation = "https://docs.rs/wayland-cursor/" repository = "https://github.com/smithay/wayland-rs" authors = ["Elinor Berger "] @@ -13,7 +13,7 @@ description = "Bindings to libwayland-cursor." readme = "README.md" [dependencies] -wayland-client = { version = "0.31.3", path = "../wayland-client" } +wayland-client = { version = "0.31.4", path = "../wayland-client" } xcursor = "0.3.1" rustix = { version = "0.38.15", features = ["shm"] } diff --git a/wayland-egl/Cargo.toml b/wayland-egl/Cargo.toml index 16e3364fe4f..fe7abb8de73 100644 --- a/wayland-egl/Cargo.toml +++ b/wayland-egl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-egl" -version = "0.32.1" +version = "0.32.2" documentation = "https://docs.rs/wayland-egl/" repository = "https://github.com/smithay/wayland-rs" authors = ["Elinor Berger "] @@ -13,8 +13,8 @@ description = "Bindings to libwayland-egl." readme = "README.md" [dependencies] -wayland-backend = { version = "0.3.4", path = "../wayland-backend", features = ["client_system"] } -wayland-sys = { version = "0.31.2", path="../wayland-sys", features = ["egl"] } +wayland-backend = { version = "0.3.5", path = "../wayland-backend", features = ["client_system"] } +wayland-sys = { version = "0.31.3", path="../wayland-sys", features = ["egl"] } [package.metadata.docs.rs] all-features = true diff --git a/wayland-protocols-misc/Cargo.toml b/wayland-protocols-misc/Cargo.toml index 306dcb16449..e579ed3ff8c 100644 --- a/wayland-protocols-misc/Cargo.toml +++ b/wayland-protocols-misc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols-misc" -version = "0.3.1" +version = "0.3.2" documentation = "https://docs.rs/wayland-protocols-misc/" repository = "https://github.com/smithay/wayland-rs" authors = ["Elinor Berger "] @@ -15,11 +15,11 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wayland-scanner = { version = "0.31.2", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.4", path = "../wayland-backend" } -wayland-client = { version = "0.31.3", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.2", path = "../wayland-server", optional = true } -wayland-protocols = { version = "0.32.1", path = "../wayland-protocols", features=["unstable"] } +wayland-scanner = { version = "0.31.3", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.5", path = "../wayland-backend" } +wayland-client = { version = "0.31.4", path = "../wayland-client", optional = true } +wayland-server = { version = "0.31.3", path = "../wayland-server", optional = true } +wayland-protocols = { version = "0.32.2", path = "../wayland-protocols", features=["unstable"] } bitflags = "2" [features] diff --git a/wayland-protocols-plasma/Cargo.toml b/wayland-protocols-plasma/Cargo.toml index e0d850a970b..d92ea522363 100644 --- a/wayland-protocols-plasma/Cargo.toml +++ b/wayland-protocols-plasma/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols-plasma" -version = "0.3.1" +version = "0.3.2" documentation = "https://docs.rs/wayland-protocols-plasma/" repository = "https://github.com/smithay/wayland-rs" authors = ["Elinor Berger "] @@ -15,11 +15,11 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wayland-scanner = { version = "0.31.2", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.4", path = "../wayland-backend" } -wayland-client = { version = "0.31.3", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.2", path = "../wayland-server", optional = true } -wayland-protocols = { version = "0.32.1", path = "../wayland-protocols"} +wayland-scanner = { version = "0.31.3", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.5", path = "../wayland-backend" } +wayland-client = { version = "0.31.4", path = "../wayland-client", optional = true } +wayland-server = { version = "0.31.3", path = "../wayland-server", optional = true } +wayland-protocols = { version = "0.32.2", path = "../wayland-protocols"} bitflags = "2" [features] diff --git a/wayland-protocols-wlr/Cargo.toml b/wayland-protocols-wlr/Cargo.toml index a3d100c7737..9b4361b7ecf 100644 --- a/wayland-protocols-wlr/Cargo.toml +++ b/wayland-protocols-wlr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols-wlr" -version = "0.3.1" +version = "0.3.2" documentation = "https://docs.rs/wayland-protocols-wlr/" repository = "https://github.com/smithay/wayland-rs" authors = ["Elinor Berger "] @@ -15,11 +15,11 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wayland-scanner = { version = "0.31.2", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.4", path = "../wayland-backend" } -wayland-client = { version = "0.31.3", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.2", path = "../wayland-server", optional = true } -wayland-protocols = { version = "0.32.1", path = "../wayland-protocols"} +wayland-scanner = { version = "0.31.3", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.5", path = "../wayland-backend" } +wayland-client = { version = "0.31.4", path = "../wayland-client", optional = true } +wayland-server = { version = "0.31.3", path = "../wayland-server", optional = true } +wayland-protocols = { version = "0.32.2", path = "../wayland-protocols"} bitflags = "2" [features] diff --git a/wayland-protocols/Cargo.toml b/wayland-protocols/Cargo.toml index 95743bae997..56590de0026 100644 --- a/wayland-protocols/Cargo.toml +++ b/wayland-protocols/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols" -version = "0.32.1" +version = "0.32.2" documentation = "https://docs.rs/wayland-protocols/" repository = "https://github.com/smithay/wayland-rs" authors = ["Elinor Berger "] @@ -13,10 +13,10 @@ rust-version = "1.65" readme = "README.md" [dependencies] -wayland-scanner = { version = "0.31.2", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.4", path = "../wayland-backend" } -wayland-client = { version = "0.31.3", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.2", path = "../wayland-server", optional = true } +wayland-scanner = { version = "0.31.3", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.5", path = "../wayland-backend" } +wayland-client = { version = "0.31.4", path = "../wayland-client", optional = true } +wayland-server = { version = "0.31.3", path = "../wayland-server", optional = true } bitflags = "2" [features] diff --git a/wayland-scanner/CHANGELOG.md b/wayland-scanner/CHANGELOG.md index fe3b99ab8b9..51ab1088bb7 100644 --- a/wayland-scanner/CHANGELOG.md +++ b/wayland-scanner/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## 0.31.3 -- 2024-07-03 + +- Update `quick-xml` to 0.34 + ## 0.31.2 -- 2024-05-30 - Use wrapper type implementing `Sync` instead of `static mut`s. diff --git a/wayland-scanner/Cargo.toml b/wayland-scanner/Cargo.toml index 45d68123c4e..79d74502885 100644 --- a/wayland-scanner/Cargo.toml +++ b/wayland-scanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-scanner" -version = "0.31.2" +version = "0.31.3" authors = ["Elinor Berger "] repository = "https://github.com/smithay/wayland-rs" documentation = "https://docs.rs/wayland-scanner/" diff --git a/wayland-server/Cargo.toml b/wayland-server/Cargo.toml index d34ff3a4b8a..6f5d5d4b68b 100644 --- a/wayland-server/Cargo.toml +++ b/wayland-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-server" -version = "0.31.2" +version = "0.31.3" documentation = "https://docs.rs/wayland-server/" repository = "https://github.com/smithay/wayland-rs" authors = ["Elinor Berger "] @@ -13,8 +13,8 @@ rust-version = "1.65" readme = "README.md" [dependencies] -wayland-backend = { version = "0.3.4", path = "../wayland-backend" } -wayland-scanner = { version = "0.31.2", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.5", path = "../wayland-backend" } +wayland-scanner = { version = "0.31.3", path = "../wayland-scanner" } bitflags = "2" log = { version = "0.4", optional = true } downcast-rs = "1.2" diff --git a/wayland-sys/Cargo.toml b/wayland-sys/Cargo.toml index 308e8b90aca..3580a9443a9 100644 --- a/wayland-sys/Cargo.toml +++ b/wayland-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-sys" -version = "0.31.2" +version = "0.31.3" repository = "https://github.com/smithay/wayland-rs" documentation = "https://docs.rs/wayland-sys/" authors = ["Elinor Berger "] diff --git a/wayland-tests/Cargo.toml b/wayland-tests/Cargo.toml index 379975e1b64..679821973ba 100644 --- a/wayland-tests/Cargo.toml +++ b/wayland-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-tests" -version = "0.1.0" +version = "0.1.1" edition = "2021" rust-version = "1.65" publish = false