From 51334b5c4d9a4bd485fecf617d0b336fb6c4b456 Mon Sep 17 00:00:00 2001 From: Tejun Heo Date: Mon, 15 Jul 2024 13:21:52 -1000 Subject: [PATCH] Bump versions for 1.0.1 release --- meson.build | 2 +- rust/scx_rustland_core/Cargo.toml | 6 +++--- 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.toml | 6 +++--- 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 +++--- 10 files changed, 30 insertions(+), 30 deletions(-) diff --git a/meson.build b/meson.build index fb8eb33e9..e23444701 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('sched_ext schedulers', 'c', - version: '1.0.0', + version: '1.0.1', 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 fe0ecc76a..e185e1ba4 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.0" +version = "1.0.1" edition = "2021" authors = ["Andrea Righi "] license = "GPL-2.0-only" @@ -12,12 +12,12 @@ anyhow = "1.0" plain = "0.2.3" libbpf-rs = "0.23.1" libc = "0.2.137" -scx_utils = { path = "../scx_utils", version = "1.0" } +scx_utils = { path = "../scx_utils", version = "1.0.1" } [build-dependencies] tar = "0.4" walkdir = "2.4" -scx_utils = { path = "../scx_utils", version = "1.0" } +scx_utils = { path = "../scx_utils", version = "1.0.1" } [lib] name = "scx_rustland_core" diff --git a/rust/scx_utils/Cargo.toml b/rust/scx_utils/Cargo.toml index de486237e..350b4a5ff 100644 --- a/rust/scx_utils/Cargo.toml +++ b/rust/scx_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_utils" -version = "1.0.0" +version = "1.0.1" 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 458387ca8..f7a002e10 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.0" +version = "1.0.1" authors = ["Andrea Righi ", "Canonical"] 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.23" log = "0.4.17" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } simplelog = "0.12.0" 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" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_lavd/Cargo.toml b/scheds/rust/scx_lavd/Cargo.toml index eb731a316..a660da650 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.0" +version = "1.0.1" 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.23" libc = "0.2.137" log = "0.4.17" ordered-float = "3.4.0" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } simplelog = "0.12.0" static_assertions = "1.1.0" rlimit = "0.10.1" @@ -25,7 +25,7 @@ plain = "0.2.3" nix = "0.28.0" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_layered/Cargo.toml b/scheds/rust/scx_layered/Cargo.toml index 841564a9f..923a517bc 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.0" +version = "1.0.1" 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" @@ -17,13 +17,13 @@ libbpf-rs = "0.23" libc = "0.2" log = "0.4" prometheus-client = "0.19" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_mitosis/Cargo.toml b/scheds/rust/scx_mitosis/Cargo.toml index 4666a1a4e..ac935a3f8 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.2" +version = "0.0.3" 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" log = "0.4" maplit = "1.0.2" prometheus-client = "0.19" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_rlfifo/Cargo.toml b/scheds/rust/scx_rlfifo/Cargo.toml index f6b4aa64e..7712b7a78 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.0" +version = "1.0.1" authors = ["Andrea Righi ", "Canonical"] 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.23.1" libc = "0.2.137" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } -scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } +scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.1" } [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } -scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } +scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.1" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_rustland/Cargo.toml b/scheds/rust/scx_rustland/Cargo.toml index 49f82a927..aaf9f549a 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.0" +version = "1.0.1" authors = ["Andrea Righi ", "Canonical"] 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.23.1" libc = "0.2.137" log = "0.4.17" ordered-float = "3.4.0" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } -scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } +scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.1" } simplelog = "0.12.0" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } -scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } +scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.1" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_rusty/Cargo.toml b/scheds/rust/scx_rusty/Cargo.toml index 95ad534c2..791565060 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.0" +version = "1.0.1" 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.23" libc = "0.2.137" log = "0.4.17" ordered-float = "3.4.0" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } simplelog = "0.12.0" 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" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" } [features] enable_backtrace = []