From 4d1f0639d8e70f8fc8ad8108ffe7567e2334fda5 Mon Sep 17 00:00:00 2001 From: Tejun Heo Date: Wed, 21 Aug 2024 06:42:11 -1000 Subject: [PATCH] Version: v1.0.3 --- meson.build | 2 +- rust/scx_rustland_core/Cargo.toml | 6 +++--- rust/scx_stats/Cargo.toml | 2 +- rust/scx_stats/scx_stats_derive/Cargo.toml | 4 ++-- rust/scx_utils/Cargo.toml | 2 +- scheds/rust/scx_bpfland/Cargo.toml | 6 +++--- scheds/rust/scx_lavd/Cargo.toml | 6 +++--- scheds/rust/scx_layered/Cargo.lock | 8 ++++---- scheds/rust/scx_layered/Cargo.toml | 10 +++++----- scheds/rust/scx_mitosis/Cargo.toml | 6 +++--- scheds/rust/scx_rlfifo/Cargo.toml | 10 +++++----- scheds/rust/scx_rustland/Cargo.toml | 10 +++++----- scheds/rust/scx_rusty/Cargo.toml | 6 +++--- 13 files changed, 39 insertions(+), 39 deletions(-) diff --git a/meson.build b/meson.build index be4882646..e838258b1 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('sched_ext schedulers', 'c', - version: '1.0.2', + version: '1.0.3', license: 'GPL-2.0',) if meson.version().version_compare('<1.2') diff --git a/rust/scx_rustland_core/Cargo.toml b/rust/scx_rustland_core/Cargo.toml index 9f62a23ce..6f6a539cb 100644 --- a/rust/scx_rustland_core/Cargo.toml +++ b/rust/scx_rustland_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_rustland_core" -version = "1.0.2" +version = "1.0.3" edition = "2021" authors = ["Andrea Righi "] license = "GPL-2.0-only" @@ -12,12 +12,12 @@ anyhow = "1.0.65" plain = "0.2.3" libbpf-rs = "0.24.1" libc = "0.2.137" -scx_utils = { path = "../scx_utils", version = "1.0.2" } +scx_utils = { path = "../scx_utils", version = "1.0.3" } [build-dependencies] tar = "0.4" walkdir = "2.4" -scx_utils = { path = "../scx_utils", version = "1.0.2" } +scx_utils = { path = "../scx_utils", version = "1.0.3" } [lib] name = "scx_rustland_core" diff --git a/rust/scx_stats/Cargo.toml b/rust/scx_stats/Cargo.toml index 72a68a8c2..8f702cb8d 100644 --- a/rust/scx_stats/Cargo.toml +++ b/rust/scx_stats/Cargo.toml @@ -2,7 +2,7 @@ workspace = { members = ["scx_stats_derive"] } [package] name = "scx_stats" -version = "0.2.0" +version = "1.0.3" edition = "2021" authors = ["Tejun Heo "] license = "GPL-2.0-only" diff --git a/rust/scx_stats/scx_stats_derive/Cargo.toml b/rust/scx_stats/scx_stats_derive/Cargo.toml index 893f3a744..d131e8482 100644 --- a/rust/scx_stats/scx_stats_derive/Cargo.toml +++ b/rust/scx_stats/scx_stats_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_stats_derive" -version = "0.2.0" +version = "1.0.3" edition = "2021" authors = ["Tejun Heo "] license = "GPL-2.0-only" @@ -13,6 +13,6 @@ proc-macro = true [dependencies] proc-macro2 = "1.0" quote = "1.0" -scx_stats = { path = "..", version = "0.2.0" } +scx_stats = { path = "..", version = "1.0.3" } serde_json = "1.0" syn = { version = "2.0", features = ["extra-traits", "full"] } diff --git a/rust/scx_utils/Cargo.toml b/rust/scx_utils/Cargo.toml index c1b75fe95..01a232e05 100644 --- a/rust/scx_utils/Cargo.toml +++ b/rust/scx_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_utils" -version = "1.0.2" +version = "1.0.3" edition = "2021" authors = ["Tejun Heo "] license = "GPL-2.0-only" diff --git a/scheds/rust/scx_bpfland/Cargo.toml b/scheds/rust/scx_bpfland/Cargo.toml index e363b1c3e..0259a34ae 100644 --- a/scheds/rust/scx_bpfland/Cargo.toml +++ b/scheds/rust/scx_bpfland/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_bpfland" -version = "1.0.2" +version = "1.0.3" authors = ["Andrea Righi "] edition = "2021" description = "A vruntime-based sched_ext scheduler that prioritizes interactive workloads. https://github.com/sched-ext/scx/tree/main" @@ -12,14 +12,14 @@ ctrlc = { version = "3.1", features = ["termination"] } clap = { version = "4.1", features = ["derive", "env", "unicode", "wrap_help"] } libbpf-rs = "0.24.1" log = "0.4.17" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } simplelog = "0.12" rlimit = "0.10.1" metrics = "0.23.0" metrics-exporter-prometheus = "0.15.0" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_lavd/Cargo.toml b/scheds/rust/scx_lavd/Cargo.toml index 8f88f584e..1517afeb2 100644 --- a/scheds/rust/scx_lavd/Cargo.toml +++ b/scheds/rust/scx_lavd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_lavd" -version = "1.0.2" +version = "1.0.3" authors = ["Changwoo Min ", "Igalia"] edition = "2021" description = "A Latency-criticality Aware Virtual Deadline (LAVD) scheduler based on 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,7 +17,7 @@ libbpf-rs = "0.24.1" libc = "0.2.137" log = "0.4.17" ordered-float = "3.4.0" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } simplelog = "0.12" static_assertions = "1.1.0" rlimit = "0.10.1" @@ -25,7 +25,7 @@ plain = "0.2.3" nix = { version = "0.29.0", features = ["signal"] } [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_layered/Cargo.lock b/scheds/rust/scx_layered/Cargo.lock index 9c553ffc7..41202f967 100644 --- a/scheds/rust/scx_layered/Cargo.lock +++ b/scheds/rust/scx_layered/Cargo.lock @@ -1023,7 +1023,7 @@ dependencies = [ [[package]] name = "scx_layered" -version = "1.0.2" +version = "1.0.3" dependencies = [ "anyhow", "bitvec", @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "scx_stats" -version = "0.2.0" +version = "1.0.3" dependencies = [ "anyhow", "crossbeam", @@ -1060,7 +1060,7 @@ dependencies = [ [[package]] name = "scx_stats_derive" -version = "0.2.0" +version = "1.0.3" dependencies = [ "proc-macro2", "quote", @@ -1071,7 +1071,7 @@ dependencies = [ [[package]] name = "scx_utils" -version = "1.0.2" +version = "1.0.3" dependencies = [ "anyhow", "bindgen", diff --git a/scheds/rust/scx_layered/Cargo.toml b/scheds/rust/scx_layered/Cargo.toml index 0bd36d499..be6b490e2 100644 --- a/scheds/rust/scx_layered/Cargo.toml +++ b/scheds/rust/scx_layered/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_layered" -version = "1.0.2" +version = "1.0.3" authors = ["Tejun Heo ", "Meta"] edition = "2021" 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" @@ -18,15 +18,15 @@ lazy_static = "1.4" libbpf-rs = "0.24.1" libc = "0.2.137" log = "0.4.17" -scx_stats = { path = "../../../rust/scx_stats", version = "0.2.0" } -scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "0.2.0" } -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_stats = { path = "../../../rust/scx_stats", version = "1.0.3" } +scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.3" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_mitosis/Cargo.toml b/scheds/rust/scx_mitosis/Cargo.toml index b6a30c61c..00f5eaecc 100644 --- a/scheds/rust/scx_mitosis/Cargo.toml +++ b/scheds/rust/scx_mitosis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_mitosis" -version = "0.0.3" +version = "0.0.4" authors = ["Dan Schatzberg ", "Meta"] edition = "2021" description = "A dynamic affinity 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" @@ -20,13 +20,13 @@ libc = "0.2.137" log = "0.4.17" maplit = "1.0.2" prometheus-client = "0.19" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_rlfifo/Cargo.toml b/scheds/rust/scx_rlfifo/Cargo.toml index 7cb9b5776..52739f951 100644 --- a/scheds/rust/scx_rlfifo/Cargo.toml +++ b/scheds/rust/scx_rlfifo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_rlfifo" -version = "1.0.2" +version = "1.0.3" authors = ["Andrea Righi "] edition = "2021" description = "A simple FIFO scheduler in Rust that runs in user-space" @@ -12,12 +12,12 @@ plain = "0.2.3" ctrlc = { version = "3.1", features = ["termination"] } libbpf-rs = "0.24.1" libc = "0.2.137" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } -scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } +scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.3" } [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } -scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } +scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.3" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_rustland/Cargo.toml b/scheds/rust/scx_rustland/Cargo.toml index 920514895..3e5729230 100644 --- a/scheds/rust/scx_rustland/Cargo.toml +++ b/scheds/rust/scx_rustland/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_rustland" -version = "1.0.2" +version = "1.0.3" authors = ["Andrea Righi "] edition = "2021" 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" @@ -16,13 +16,13 @@ libbpf-rs = "0.24.1" libc = "0.2.137" log = "0.4.17" ordered-float = "3.4.0" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } -scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } +scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.3" } simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } -scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } +scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.3" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_rusty/Cargo.toml b/scheds/rust/scx_rusty/Cargo.toml index 16a5f410c..f7b2be2f3 100644 --- a/scheds/rust/scx_rusty/Cargo.toml +++ b/scheds/rust/scx_rusty/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_rusty" -version = "1.0.2" +version = "1.0.3" authors = ["Dan Schatzberg ", "Meta"] edition = "2021" 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" @@ -15,7 +15,7 @@ libbpf-rs = "0.24.1" libc = "0.2.137" log = "0.4.17" ordered-float = "3.4.0" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } simplelog = "0.12" sorted-vec = "0.8.3" static_assertions = "1.1.0" @@ -23,7 +23,7 @@ metrics = "0.23.0" metrics-exporter-prometheus = "0.15.0" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.3" } [features] enable_backtrace = []