Skip to content

Commit dcfc954

Browse files
authored
Merge pull request #1616 from sched-ext/htejun/release
version: 1.0.11
2 parents 98c3c42 + 619178a commit dcfc954

File tree

21 files changed

+93
-93
lines changed

21 files changed

+93
-93
lines changed

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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: '1.0.10',
2+
version: '1.0.11',
33
license: 'GPL-2.0',
44
meson_version : '>= 1.2.0',)
55

rust/scx_loader/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_loader"
3-
version = "1.0.10"
3+
version = "1.0.11"
44
authors = ["Vladislav Nepogodin <[email protected]>"]
55
edition = "2021"
66
description = "DBUS on-demand loader of sched-ext schedulers"

rust/scx_rustland_core/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_core"
3-
version = "2.2.9"
3+
version = "2.2.10"
44
edition = "2021"
55
authors = ["Andrea Righi <[email protected]>"]
66
license = "GPL-2.0-only"
@@ -12,12 +12,12 @@ anyhow = "1.0.65"
1212
plain = "0.2.3"
1313
libbpf-rs = "=0.25.0-beta.1"
1414
libc = "0.2.137"
15-
scx_utils = { path = "../scx_utils", version = "1.0.12" }
15+
scx_utils = { path = "../scx_utils", version = "1.0.13" }
1616

1717
[build-dependencies]
1818
tar = "0.4"
1919
walkdir = "2.4"
20-
scx_utils = { path = "../scx_utils", version = "1.0.12" }
20+
scx_utils = { path = "../scx_utils", version = "1.0.13" }
2121

2222
[lib]
2323
name = "scx_rustland_core"

rust/scx_stats/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_stats"
3-
version = "1.0.10"
3+
version = "1.0.11"
44
edition = "2021"
55
authors = ["Tejun Heo <[email protected]>"]
66
license = "GPL-2.0-only"

rust/scx_stats/scx_stats_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_stats_derive"
3-
version = "1.0.10"
3+
version = "1.0.11"
44
edition = "2021"
55
authors = ["Tejun Heo <[email protected]>"]
66
license = "GPL-2.0-only"
@@ -13,7 +13,7 @@ proc-macro = true
1313
[dependencies]
1414
proc-macro2 = "1.0"
1515
quote = "1.0"
16-
scx_stats = { path = "..", version = "1.0.10" }
16+
scx_stats = { path = "..", version = "1.0.11" }
1717
serde_json = "1.0.133"
1818
syn = { version = "2.0", features = ["extra-traits", "full"] }
1919

rust/scx_utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_utils"
3-
version = "1.0.12"
3+
version = "1.0.13"
44
edition = "2021"
55
authors = ["Tejun Heo <[email protected]>"]
66
license = "GPL-2.0-only"
@@ -21,7 +21,7 @@ log = "0.4.17"
2121
nvml-wrapper = { version = "0.10.0", optional = true }
2222
paste = "1.0"
2323
regex = "1.11.1"
24-
scx_stats = { path = "../scx_stats", version = "1.0.10" }
24+
scx_stats = { path = "../scx_stats", version = "1.0.11" }
2525
serde = { version = "1.0.215", features = ["derive"] }
2626
sscanf = "0.4"
2727
tar = "0.4"

scheds/rust/scx_bpfland/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_bpfland"
3-
version = "1.0.10"
3+
version = "1.0.11"
44
authors = ["Andrea Righi <[email protected]>"]
55
edition = "2021"
66
description = "A vruntime-based sched_ext scheduler that prioritizes interactive workloads. https://github.com/sched-ext/scx/tree/main"
@@ -13,14 +13,14 @@ clap = { version = "4.5.28", features = ["derive", "env", "unicode", "wrap_help"
1313
crossbeam = "0.8.4"
1414
libbpf-rs = "=0.25.0-beta.1"
1515
log = "0.4.17"
16-
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.10" }
17-
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.10" }
18-
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.12", features = ["autopower"] }
16+
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.11" }
17+
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.11" }
18+
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.13", features = ["autopower"] }
1919
serde = { version = "1.0.215", features = ["derive"] }
2020
simplelog = "0.12"
2121

2222
[build-dependencies]
23-
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.12" }
23+
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.13" }
2424

2525
[features]
2626
enable_backtrace = []

scheds/rust/scx_chaos/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "scx_chaos"
3-
version = "1.0.10"
3+
version = "1.0.11"
44
edition = "2021"
55

66
[dependencies]
7-
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.12" }
8-
scx_p2dq = { path = "../../../scheds/rust/scx_p2dq", version = "1.0.11" }
7+
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.13" }
8+
scx_p2dq = { path = "../../../scheds/rust/scx_p2dq", version = "1.0.12" }
99

1010
anyhow = "1.0.65"
1111
clap = { version = "4.5.28", features = ["derive", "env", "unicode", "wrap_help"] }
@@ -15,4 +15,4 @@ log = "0.4.17"
1515
simplelog = "0.12"
1616

1717
[build-dependencies]
18-
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.12" }
18+
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.13" }

scheds/rust/scx_flash/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_flash"
3-
version = "1.0.8"
3+
version = "1.0.9"
44
authors = ["Andrea Righi <[email protected]>"]
55
edition = "2021"
66
description = "A scheduler designed for multimedia and real-time audio processing workloads. https://github.com/sched-ext/scx/tree/main"
@@ -13,14 +13,14 @@ clap = { version = "4.5.28", features = ["derive", "env", "unicode", "wrap_help"
1313
crossbeam = "0.8.4"
1414
libbpf-rs = "=0.25.0-beta.1"
1515
log = "0.4.17"
16-
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.10" }
17-
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.10" }
18-
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.12" }
16+
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.11" }
17+
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.11" }
18+
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.13" }
1919
serde = { version = "1.0.215", features = ["derive"] }
2020
simplelog = "0.12"
2121

2222
[build-dependencies]
23-
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.12" }
23+
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.13" }
2424

2525
[features]
2626
enable_backtrace = []

0 commit comments

Comments
 (0)