-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #327 from sched-ext/htejun/bump-versions
Bump versions for a release
- Loading branch information
Showing
8 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "scx_rustland_core" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
edition = "2021" | ||
authors = ["Andrea Righi <[email protected]>"] | ||
license = "GPL-2.0-only" | ||
|
@@ -13,12 +13,12 @@ plain = "0.2.3" | |
libbpf-rs = "0.23.1" | ||
libc = "0.2.137" | ||
buddy-alloc = "0.5.1" | ||
scx_utils = { path = "../scx_utils", version = "0.8" } | ||
scx_utils = { path = "../scx_utils", version = "0.8.1" } | ||
|
||
[build-dependencies] | ||
tar = "0.4" | ||
walkdir = "2.4" | ||
scx_utils = { path = "../scx_utils", version = "0.8" } | ||
scx_utils = { path = "../scx_utils", version = "0.8.1" } | ||
|
||
[lib] | ||
name = "scx_rustland_core" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "scx_utils" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
edition = "2021" | ||
authors = ["Tejun Heo <[email protected]>"] | ||
license = "GPL-2.0-only" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "scx_lavd" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
authors = ["Changwoo Min <[email protected]>", "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,15 +17,15 @@ libbpf-rs = "0.23" | |
libc = "0.2.137" | ||
log = "0.4.17" | ||
ordered-float = "3.4.0" | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
simplelog = "0.12.0" | ||
static_assertions = "1.1.0" | ||
rlimit = "0.10.1" | ||
plain = "0.2.3" | ||
nix = "0.28.0" | ||
|
||
[build-dependencies] | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
|
||
[features] | ||
enable_backtrace = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "scx_layered" | ||
version = "0.0.8" | ||
version = "0.0.9" | ||
authors = ["Tejun Heo <[email protected]>", "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 = "0.8" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
simplelog = "0.12" | ||
|
||
[build-dependencies] | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
|
||
[features] | ||
enable_backtrace = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "scx_rlfifo" | ||
version = "0.0.2" | ||
version = "0.0.3" | ||
authors = ["Andrea Righi <[email protected]>", "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 = "0.8" } | ||
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.4" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.5" } | ||
|
||
[build-dependencies] | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8" } | ||
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.4" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.5" } | ||
|
||
[features] | ||
enable_backtrace = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "scx_rustland" | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Andrea Righi <[email protected]>", "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 = "0.8" } | ||
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.4" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.5" } | ||
simplelog = "0.12.0" | ||
|
||
[build-dependencies] | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8" } | ||
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.4" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.5" } | ||
|
||
[features] | ||
enable_backtrace = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "scx_rusty" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
authors = ["Dan Schatzberg <[email protected]>", "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,13 +15,13 @@ libbpf-rs = "0.23" | |
libc = "0.2.137" | ||
log = "0.4.17" | ||
ordered-float = "3.4.0" | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
simplelog = "0.12.0" | ||
sorted-vec = "0.8.3" | ||
static_assertions = "1.1.0" | ||
|
||
[build-dependencies] | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8" } | ||
scx_utils = { path = "../../../rust/scx_utils", version = "0.8.1" } | ||
|
||
[features] | ||
enable_backtrace = [] |