From f46b1fa2c581e644c63e7f6dd1dcb6fbc9a3700e Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Thu, 30 May 2024 12:49:37 -0700 Subject: [PATCH] Bump versions and update changelogs `cargo release --no-publish --no-tag --no-push --execute patch` `wayland-protocols` needed a breaking version bump, so it was manually changed. The `CHANGELOG.md` files also had to be updated manually. --- wayland-backend/CHANGELOG.md | 2 ++ wayland-backend/Cargo.toml | 4 ++-- wayland-client/Cargo.toml | 6 +++--- wayland-cursor/Cargo.toml | 4 ++-- wayland-egl/Cargo.toml | 6 +++--- wayland-protocols-misc/CHANGELOG.md | 5 +++++ wayland-protocols-misc/Cargo.toml | 12 ++++++------ wayland-protocols-plasma/CHANGELOG.md | 6 ++++++ wayland-protocols-plasma/Cargo.toml | 12 ++++++------ wayland-protocols-wlr/CHANGELOG.md | 5 +++++ wayland-protocols-wlr/Cargo.toml | 12 ++++++------ wayland-protocols/CHANGELOG.md | 2 ++ wayland-protocols/Cargo.toml | 10 +++++----- wayland-scanner/CHANGELOG.md | 2 ++ wayland-scanner/Cargo.toml | 2 +- wayland-server/CHANGELOG.md | 2 ++ wayland-server/Cargo.toml | 6 +++--- wayland-sys/Cargo.toml | 2 +- 18 files changed, 62 insertions(+), 38 deletions(-) diff --git a/wayland-backend/CHANGELOG.md b/wayland-backend/CHANGELOG.md index c4c95b593ac..2066b25df7f 100644 --- a/wayland-backend/CHANGELOG.md +++ b/wayland-backend/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.3.4 -- 2024-05-30 + ### Additions - Add `rwh_06` feature for `raw-window-handle` 0.6 diff --git a/wayland-backend/Cargo.toml b/wayland-backend/Cargo.toml index b66d9454388..0ba1be61092 100644 --- a/wayland-backend/Cargo.toml +++ b/wayland-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-backend" -version = "0.3.3" +version = "0.3.4" 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.1", path = "../wayland-sys", features = [] } +wayland-sys = { version = "0.31.2", 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 022c2e816a4..f4cc44f332f 100644 --- a/wayland-client/Cargo.toml +++ b/wayland-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-client" -version = "0.31.2" +version = "0.31.3" 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.3", path = "../wayland-backend" } -wayland-scanner = { version = "0.31.1", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.4", path = "../wayland-backend" } +wayland-scanner = { version = "0.31.2", 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 eeb5b4d2dec..4b8f099f182 100644 --- a/wayland-cursor/Cargo.toml +++ b/wayland-cursor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-cursor" -version = "0.31.1" +version = "0.31.2" 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.2", path = "../wayland-client" } +wayland-client = { version = "0.31.3", 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 694e5ffec1e..16e3364fe4f 100644 --- a/wayland-egl/Cargo.toml +++ b/wayland-egl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-egl" -version = "0.32.0" +version = "0.32.1" 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.3", path = "../wayland-backend", features = ["client_system"] } -wayland-sys = { version = "0.31.1", path="../wayland-sys", features = ["egl"] } +wayland-backend = { version = "0.3.4", path = "../wayland-backend", features = ["client_system"] } +wayland-sys = { version = "0.31.2", path="../wayland-sys", features = ["egl"] } [package.metadata.docs.rs] all-features = true diff --git a/wayland-protocols-misc/CHANGELOG.md b/wayland-protocols-misc/CHANGELOG.md index 198c408d391..d0f79e63f8c 100644 --- a/wayland-protocols-misc/CHANGELOG.md +++ b/wayland-protocols-misc/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.3.0 -- 2024-05-30 + +### Breaking changes +- Updated wayland-protocols to 0.3 + ## 0.2.0 -- 2023-09-02 ### Breaking changes diff --git a/wayland-protocols-misc/Cargo.toml b/wayland-protocols-misc/Cargo.toml index c3e79c773a1..8f54a598e47 100644 --- a/wayland-protocols-misc/Cargo.toml +++ b/wayland-protocols-misc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols-misc" -version = "0.2.0" +version = "0.3.0" 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.1", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.3", path = "../wayland-backend" } -wayland-client = { version = "0.31.2", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.1", path = "../wayland-server", optional = true } -wayland-protocols = { version = "0.31.2", path = "../wayland-protocols", features=["unstable"] } +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.0", path = "../wayland-protocols", features=["unstable"] } bitflags = "2" [features] diff --git a/wayland-protocols-plasma/CHANGELOG.md b/wayland-protocols-plasma/CHANGELOG.md index b086c493c1c..42e7980f280 100644 --- a/wayland-protocols-plasma/CHANGELOG.md +++ b/wayland-protocols-plasma/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +## 0.3.0 -- 2024-05-30 + +### Breaking changes +- Updated wayland-protocols to 0.3 + +### Additions - Make available protocols that based on headerless xml files. ## 0.2.0 -- 2023-09-02 diff --git a/wayland-protocols-plasma/Cargo.toml b/wayland-protocols-plasma/Cargo.toml index 8e134e3f6f4..f94432d7cd5 100644 --- a/wayland-protocols-plasma/Cargo.toml +++ b/wayland-protocols-plasma/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols-plasma" -version = "0.2.0" +version = "0.3.0" 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.1", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.3", path = "../wayland-backend" } -wayland-client = { version = "0.31.2", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.1", path = "../wayland-server", optional = true } -wayland-protocols = { version = "0.31.2", path = "../wayland-protocols"} +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.0", path = "../wayland-protocols"} bitflags = "2" [features] diff --git a/wayland-protocols-wlr/CHANGELOG.md b/wayland-protocols-wlr/CHANGELOG.md index 264a8811b0f..f8a8791ee6d 100644 --- a/wayland-protocols-wlr/CHANGELOG.md +++ b/wayland-protocols-wlr/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.3.0 -- 2024-05-30 + +### Breaking changes +- Updated wayland-protocols to 0.3 + ## 0.2.0 -- 2023-09-02 ### Breaking changes diff --git a/wayland-protocols-wlr/Cargo.toml b/wayland-protocols-wlr/Cargo.toml index 482ba3a4e86..802ff700d18 100644 --- a/wayland-protocols-wlr/Cargo.toml +++ b/wayland-protocols-wlr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols-wlr" -version = "0.2.0" +version = "0.3.0" 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.1", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.3", path = "../wayland-backend" } -wayland-client = { version = "0.31.2", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.1", path = "../wayland-server", optional = true } -wayland-protocols = { version = "0.31.2", path = "../wayland-protocols"} +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.0", path = "../wayland-protocols"} bitflags = "2" [features] diff --git a/wayland-protocols/CHANGELOG.md b/wayland-protocols/CHANGELOG.md index bf74582c3a0..0936a0e2f34 100644 --- a/wayland-protocols/CHANGELOG.md +++ b/wayland-protocols/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.3.0 -- 2024-05-30 + ### Breaking changes - `set_constraint_adjustment`/`SetConstraintAdjustment` now takes a `ConstraintAdjustment` instead of a u32. diff --git a/wayland-protocols/Cargo.toml b/wayland-protocols/Cargo.toml index 61ae21735b5..fc7bd6f4a09 100644 --- a/wayland-protocols/Cargo.toml +++ b/wayland-protocols/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-protocols" -version = "0.31.2" +version = "0.32.0" 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.1", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.3", path = "../wayland-backend" } -wayland-client = { version = "0.31.2", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.1", path = "../wayland-server", optional = true } +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 } bitflags = "2" [features] diff --git a/wayland-scanner/CHANGELOG.md b/wayland-scanner/CHANGELOG.md index bb378accb7f..fe3b99ab8b9 100644 --- a/wayland-scanner/CHANGELOG.md +++ b/wayland-scanner/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.31.2 -- 2024-05-30 + - Use wrapper type implementing `Sync` instead of `static mut`s. - Add headerless xml file parsing possibility for `parse` function. diff --git a/wayland-scanner/Cargo.toml b/wayland-scanner/Cargo.toml index 06da62057fa..331605f0a18 100644 --- a/wayland-scanner/Cargo.toml +++ b/wayland-scanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-scanner" -version = "0.31.1" +version = "0.31.2" authors = ["Elinor Berger "] repository = "https://github.com/smithay/wayland-rs" documentation = "https://docs.rs/wayland-scanner/" diff --git a/wayland-server/CHANGELOG.md b/wayland-server/CHANGELOG.md index 2440948b1e1..f9543418d2b 100644 --- a/wayland-server/CHANGELOG.md +++ b/wayland-server/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.31.2 -- 2024-05-30 + #### Additions - Add `Weak::is_alive` allowing to check if a resource is still alive. diff --git a/wayland-server/Cargo.toml b/wayland-server/Cargo.toml index 6a26de686c2..d34ff3a4b8a 100644 --- a/wayland-server/Cargo.toml +++ b/wayland-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-server" -version = "0.31.1" +version = "0.31.2" 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.3", path = "../wayland-backend" } -wayland-scanner = { version = "0.31.1", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.4", path = "../wayland-backend" } +wayland-scanner = { version = "0.31.2", 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 e0756989c08..308e8b90aca 100644 --- a/wayland-sys/Cargo.toml +++ b/wayland-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wayland-sys" -version = "0.31.1" +version = "0.31.2" repository = "https://github.com/smithay/wayland-rs" documentation = "https://docs.rs/wayland-sys/" authors = ["Elinor Berger "]