Skip to content

Commit 988b7d1

Browse files
committed
Bump versions
scx_exit_info change doesn't require code to be updated but breaks binary compatbility. Bump versions and cut a new release.
1 parent eb997a6 commit 988b7d1

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.5',
2+
version: '0.1.6',
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.5.0"
3+
version = "0.6.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.4"
3+
version = "0.0.5"
44
authors = ["Tejun Heo <[email protected]>", "Meta"]
55
edition = "2021"
66
description = "A highly configurable multi-layer BPF / user space hybrid scheduler used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main"
@@ -17,13 +17,13 @@ libbpf-rs = "0.22"
1717
libc = "0.2"
1818
log = "0.4"
1919
prometheus-client = "0.22.0"
20-
scx_utils = { path = "../../../rust/scx_utils", version = "0.5" }
20+
scx_utils = { path = "../../../rust/scx_utils", version = "0.6" }
2121
serde = { version = "1.0", features = ["derive"] }
2222
serde_json = "1.0"
2323
simplelog = "0.12"
2424

2525
[build-dependencies]
26-
scx_utils = { path = "../../../rust/scx_utils", version = "0.5" }
26+
scx_utils = { path = "../../../rust/scx_utils", version = "0.6" }
2727

2828
[features]
2929
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.2"
3+
version = "0.0.3"
44
authors = ["Andrea Righi <[email protected]>", "Canonical"]
55
edition = "2021"
66
description = "A BPF component (dispatcher) that implements the low level sched-ext functionalities and a user-space counterpart (scheduler), written in Rust, that implements the actual scheduling policy. This is used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main"
@@ -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.5" }
20+
scx_utils = { path = "../../../rust/scx_utils", version = "0.6" }
2121
simplelog = "0.12.0"
2222

2323
[build-dependencies]
24-
scx_utils = { path = "../../../rust/scx_utils", version = "0.5" }
24+
scx_utils = { path = "../../../rust/scx_utils", version = "0.6" }
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.3"
3+
version = "0.5.4"
44
authors = ["Dan Schatzberg <[email protected]>", "Meta"]
55
edition = "2021"
66
description = "A multi-domain, BPF / user space hybrid scheduler used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main"
@@ -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.5" }
20+
scx_utils = { path = "../../../rust/scx_utils", version = "0.6" }
2121
simplelog = "0.12.0"
2222

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

2626
[features]
2727
enable_backtrace = []

0 commit comments

Comments
 (0)