Skip to content

Commit 1a85420

Browse files
authored
Merge pull request #91 from Smithay/libinput-1.30
Update libinput version to 1.30
2 parents 062e061 + f604235 commit 1a85420

File tree

8 files changed

+9459
-3
lines changed

8 files changed

+9459
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
RUST_LOG: bindgen=warn,bindgen::ir=error,bindgen::codegen=error
226226
with:
227227
command: build
228-
args: --manifest-path input-sys/Cargo.toml --target ${{ matrix.target }} --no-default-features --features update_bindings,libinput_1_11,libinput_1_14,libinput_1_15,libinput_1_19,libinput_1_21,libinput_1_23,libinput_1_26,libinput_1_27,libinput_1_28,libinput_1_29
228+
args: --manifest-path input-sys/Cargo.toml --target ${{ matrix.target }} --no-default-features --features update_bindings,libinput_1_11,libinput_1_14,libinput_1_15,libinput_1_19,libinput_1_21,libinput_1_23,libinput_1_26,libinput_1_27,libinput_1_28,libinput_1_29,libinput_1_30
229229
- name: Copy bindings
230230
run: |
231231
for i in input-sys/src/bindings/*.rs

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- **Breaking:** `Device::name`, `Device::output_name`, `Seat::physical_name` and `Seat::logical_name` now return Cow strings due to lossy conversion into UTF8
44
- **Breaking:** `Device::config_tap_default_drag_lock_enabled` and `Device::config_tap_set_drag_lock_enabled` now use `DragLockState` type rather than `bool`
5-
- Added support for libinput 1.23, 1.26, 1.27, 1.28, 1.29 features
5+
- Added support for libinput 1.23, 1.26, 1.27, 1.28, 1.29, 1.30 features
66

77
## 0.9.1
88

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ libinput_1_26 = ["input-sys/libinput_1_26", "libinput_1_23"]
4242
libinput_1_27 = ["input-sys/libinput_1_27", "libinput_1_26"]
4343
libinput_1_28 = ["input-sys/libinput_1_28", "libinput_1_27"]
4444
libinput_1_29 = ["input-sys/libinput_1_29", "libinput_1_28"]
45+
libinput_1_30 = ["input-sys/libinput_1_30", "libinput_1_29"]
4546

4647
[workspace]
4748
members = [
4849
"input-sys"
4950
]
5051

5152
[package.metadata.docs.rs]
52-
features = ["libinput_1_28"]
53+
features = ["libinput_1_30"]

input-sys/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ libinput_1_26 = []
4242
libinput_1_27 = []
4343
libinput_1_28 = []
4444
libinput_1_29 = []
45+
libinput_1_30 = []

input-sys/build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ extern crate bindgen;
44
use std::{env, path::Path};
55

66
const LIB_VERSIONS: &[(u8, u8, u8)] = &[
7+
(1, 30, 0),
78
(1, 29, 0),
89
(1, 28, 0),
910
(1, 27, 0),

0 commit comments

Comments
 (0)