Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 committed Sep 4, 2024
1 parent 7ff415b commit face961
Show file tree
Hide file tree
Showing 16 changed files with 48 additions and 40 deletions.
2 changes: 2 additions & 0 deletions wayland-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.3.7 -- 2024-09-04

### Bugfixes

- backend/sys: Fix importing external objects with `Backend::manage_object` by
Expand Down
4 changes: 2 additions & 2 deletions wayland-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-backend"
version = "0.3.6"
version = "0.3.7"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -14,7 +14,7 @@ readme = "README.md"
build = "build.rs"

[dependencies]
wayland-sys = { version = "0.31.4", path = "../wayland-sys", features = [] }
wayland-sys = { version = "0.31.5", path = "../wayland-sys", features = [] }
log = { version = "0.4", optional = true }
scoped-tls = "1.0"
downcast-rs = "1.2"
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.31.5"
version = "0.31.6"
documentation = "https://docs.rs/wayland-client/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
Expand All @@ -13,8 +13,8 @@ description = "Bindings to the standard C implementation of the wayland protocol
readme = "README.md"

[dependencies]
wayland-backend = { version = "0.3.6", path = "../wayland-backend" }
wayland-scanner = { version = "0.31.4", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.7", path = "../wayland-backend" }
wayland-scanner = { version = "0.31.5", path = "../wayland-scanner" }
bitflags = "2"
rustix = { version = "0.38.0", features = ["event"] }
log = { version = "0.4", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions wayland-cursor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-cursor"
version = "0.31.5"
version = "0.31.6"
documentation = "https://docs.rs/wayland-cursor/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
Expand All @@ -13,7 +13,7 @@ description = "Bindings to libwayland-cursor."
readme = "README.md"

[dependencies]
wayland-client = { version = "0.31.5", path = "../wayland-client" }
wayland-client = { version = "0.31.6", path = "../wayland-client" }
xcursor = "0.3.1"
rustix = { version = "0.38.15", features = ["shm"] }

Expand Down
6 changes: 3 additions & 3 deletions wayland-egl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-egl"
version = "0.32.3"
version = "0.32.4"
documentation = "https://docs.rs/wayland-egl/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
Expand All @@ -13,8 +13,8 @@ description = "Bindings to libwayland-egl."
readme = "README.md"

[dependencies]
wayland-backend = { version = "0.3.6", path = "../wayland-backend", features = ["client_system"] }
wayland-sys = { version = "0.31.4", path="../wayland-sys", features = ["egl"] }
wayland-backend = { version = "0.3.7", path = "../wayland-backend", features = ["client_system"] }
wayland-sys = { version = "0.31.5", path="../wayland-sys", features = ["egl"] }

[package.metadata.docs.rs]
all-features = true
Expand Down
12 changes: 6 additions & 6 deletions wayland-protocols-misc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-protocols-misc"
version = "0.3.3"
version = "0.3.4"
documentation = "https://docs.rs/wayland-protocols-misc/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
Expand All @@ -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.4", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.6", path = "../wayland-backend" }
wayland-client = { version = "0.31.5", path = "../wayland-client", optional = true }
wayland-server = { version = "0.31.4", path = "../wayland-server", optional = true }
wayland-protocols = { version = "0.32.3", path = "../wayland-protocols", features=["unstable"] }
wayland-scanner = { version = "0.31.5", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.7", path = "../wayland-backend" }
wayland-client = { version = "0.31.6", path = "../wayland-client", optional = true }
wayland-server = { version = "0.31.5", path = "../wayland-server", optional = true }
wayland-protocols = { version = "0.32.4", path = "../wayland-protocols", features=["unstable"] }
bitflags = "2"

[features]
Expand Down
12 changes: 6 additions & 6 deletions wayland-protocols-plasma/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-protocols-plasma"
version = "0.3.3"
version = "0.3.4"
documentation = "https://docs.rs/wayland-protocols-plasma/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
Expand All @@ -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.4", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.6", path = "../wayland-backend" }
wayland-client = { version = "0.31.5", path = "../wayland-client", optional = true }
wayland-server = { version = "0.31.4", path = "../wayland-server", optional = true }
wayland-protocols = { version = "0.32.3", path = "../wayland-protocols"}
wayland-scanner = { version = "0.31.5", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.7", path = "../wayland-backend" }
wayland-client = { version = "0.31.6", path = "../wayland-client", optional = true }
wayland-server = { version = "0.31.5", path = "../wayland-server", optional = true }
wayland-protocols = { version = "0.32.4", path = "../wayland-protocols"}
bitflags = "2"

[features]
Expand Down
2 changes: 2 additions & 0 deletions wayland-protocols-wlr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.3.4 -- 2024-09-04

- Update wlr-protocols
- `wlr-layer-shell-unstable-v1` is now version 5, with option to set exclusion edge

Expand Down
12 changes: 6 additions & 6 deletions wayland-protocols-wlr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-protocols-wlr"
version = "0.3.3"
version = "0.3.4"
documentation = "https://docs.rs/wayland-protocols-wlr/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
Expand All @@ -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.4", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.6", path = "../wayland-backend" }
wayland-client = { version = "0.31.5", path = "../wayland-client", optional = true }
wayland-server = { version = "0.31.4", path = "../wayland-server", optional = true }
wayland-protocols = { version = "0.32.3", path = "../wayland-protocols"}
wayland-scanner = { version = "0.31.5", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.7", path = "../wayland-backend" }
wayland-client = { version = "0.31.6", path = "../wayland-client", optional = true }
wayland-server = { version = "0.31.5", path = "../wayland-server", optional = true }
wayland-protocols = { version = "0.32.4", path = "../wayland-protocols"}
bitflags = "2"

[features]
Expand Down
4 changes: 3 additions & 1 deletion wayland-protocols/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@

## Unreleased

## 0.32.4 -- 2024-09-04

### Additions
- Bump wayland-protocols to 1.37
- New staging protocols:
* `ext-image-capture-source-v1`
* `ext-image-copy-capture-v1`
* `xdg-toplevel-icon-v1`

## 0.3.0 -- 2024-05-30
## 0.32.3 -- 2024-05-30

### Breaking changes
- `set_constraint_adjustment`/`SetConstraintAdjustment` now takes a `ConstraintAdjustment` instead of a u32.
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.32.3"
version = "0.32.4"
documentation = "https://docs.rs/wayland-protocols/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
Expand All @@ -13,10 +13,10 @@ rust-version = "1.65"
readme = "README.md"

[dependencies]
wayland-scanner = { version = "0.31.4", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.6", path = "../wayland-backend" }
wayland-client = { version = "0.31.5", path = "../wayland-client", optional = true }
wayland-server = { version = "0.31.4", path = "../wayland-server", optional = true }
wayland-scanner = { version = "0.31.5", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.7", path = "../wayland-backend" }
wayland-client = { version = "0.31.6", path = "../wayland-client", optional = true }
wayland-server = { version = "0.31.5", path = "../wayland-server", optional = true }
bitflags = "2"

[features]
Expand Down
2 changes: 2 additions & 0 deletions wayland-scanner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.31.5 -- 2024-09-04

- Update `quick-xml` to 0.36
- Allow `<!DOCTYPE>` in XML input

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.31.4"
version = "0.31.5"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://docs.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.31.4"
version = "0.31.5"
documentation = "https://docs.rs/wayland-server/"
repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
Expand All @@ -13,8 +13,8 @@ rust-version = "1.65"
readme = "README.md"

[dependencies]
wayland-backend = { version = "0.3.6", path = "../wayland-backend" }
wayland-scanner = { version = "0.31.4", path = "../wayland-scanner" }
wayland-backend = { version = "0.3.7", path = "../wayland-backend" }
wayland-scanner = { version = "0.31.5", path = "../wayland-scanner" }
bitflags = "2"
log = { version = "0.4", optional = true }
downcast-rs = "1.2"
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.31.4"
version = "0.31.5"
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://docs.rs/wayland-sys/"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
Expand Down
2 changes: 1 addition & 1 deletion wayland-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wayland-tests"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
rust-version = "1.65"
publish = false
Expand Down

0 comments on commit face961

Please sign in to comment.