Skip to content

Commit 942b026

Browse files
committed
Bump versions
After updates to reflect the updated init and direct dispatch API, the schedulers aren't compatible with older kernels. Bump versions and publish releases.
1 parent 4ff504a commit 942b026

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('sched_ext schedulers', 'c',
2-
version: '0.1.4',
2+
version: '0.1.5',
33
license: 'GPL-2.0')
44

55
if meson.version().version_compare('<1.2')

rust/scx_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_utils"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
edition = "2021"
55
authors = ["Tejun Heo <[email protected]>"]
66
license = "GPL-2.0-only"

scheds/rust/scx_layered/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_layered"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
authors = ["Tejun Heo <[email protected]>", "Meta"]
55
edition = "2021"
66
description = "Userspace scheduling with BPF for Ads"
@@ -16,13 +16,13 @@ lazy_static = "1.4"
1616
libbpf-rs = "0.22"
1717
libc = "0.2"
1818
log = "0.4"
19-
scx_utils = { path = "../../../rust/scx_utils", version = "0.4" }
19+
scx_utils = { path = "../../../rust/scx_utils", version = "0.5" }
2020
serde = { version = "1.0", features = ["derive"] }
2121
serde_json = "1.0"
2222
simplelog = "0.12"
2323

2424
[build-dependencies]
25-
scx_utils = { path = "../../../rust/scx_utils", version = "0.4" }
25+
scx_utils = { path = "../../../rust/scx_utils", version = "0.5" }
2626

2727
[features]
2828
enable_backtrace = []

scheds/rust/scx_rustland/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_rustland"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
authors = ["Andrea Righi <[email protected]>", "Canonical"]
55
edition = "2021"
66
description = "Userspace scheduling with BPF"
@@ -17,11 +17,11 @@ libbpf-rs = "0.22.0"
1717
libc = "0.2.137"
1818
log = "0.4.17"
1919
ordered-float = "3.4.0"
20-
scx_utils = { path = "../../../rust/scx_utils", version = "0.4" }
20+
scx_utils = { path = "../../../rust/scx_utils", version = "0.5" }
2121
simplelog = "0.12.0"
2222

2323
[build-dependencies]
24-
scx_utils = { path = "../../../rust/scx_utils", version = "0.4" }
24+
scx_utils = { path = "../../../rust/scx_utils", version = "0.5" }
2525

2626
[features]
2727
enable_backtrace = []

scheds/rust/scx_rusty/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_rusty"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
authors = ["Dan Schatzberg <[email protected]>", "Meta"]
55
edition = "2021"
66
description = "Userspace scheduling with BPF"
@@ -17,11 +17,11 @@ libbpf-rs = "0.22.0"
1717
libc = "0.2.137"
1818
log = "0.4.17"
1919
ordered-float = "3.4.0"
20-
scx_utils = { path = "../../../rust/scx_utils", version = "0.4" }
20+
scx_utils = { path = "../../../rust/scx_utils", version = "0.5" }
2121
simplelog = "0.12.0"
2222

2323
[build-dependencies]
24-
scx_utils = { path = "../../../rust/scx_utils", version = "0.4" }
24+
scx_utils = { path = "../../../rust/scx_utils", version = "0.5" }
2525

2626
[features]
2727
enable_backtrace = []

0 commit comments

Comments
 (0)