Skip to content

Commit 6e1d169

Browse files
committed
versions: bump versions for 1.0.18 release
Signed-off-by: Jake Hillion <[email protected]>
1 parent c86a89b commit 6e1d169

File tree

30 files changed

+144
-144
lines changed

30 files changed

+144
-144
lines changed

Cargo.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_arena"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
description = "Crate for setting up the BPF arena library for sched-ext schedulers."
66
license = "GPL-2.0-only"
@@ -10,7 +10,7 @@ anyhow = "1.0.65"
1010
libbpf-rs = "=0.26.0-beta.1"
1111
libbpf-sys = "=1.6.1"
1212
simplelog = "0.12"
13-
scx_utils = { path = "../../scx_utils", version = "1.0.23" }
13+
scx_utils = { path = "../../scx_utils", version = "1.0.24" }
1414

1515
[build-dependencies]
16-
scx_utils = { path = "../../scx_utils", version = "1.0.23" }
16+
scx_utils = { path = "../../scx_utils", version = "1.0.24" }
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_arena_selftests"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
edition = "2021"
55

66
publish = false
@@ -9,8 +9,8 @@ publish = false
99
anyhow = "1.0.65"
1010
libbpf-rs = "=0.26.0-beta.1"
1111
simplelog = "0.12"
12-
scx_utils = { path = "../../scx_utils", version = "1.0.23" }
12+
scx_utils = { path = "../../scx_utils", version = "1.0.24" }
1313

1414
[build-dependencies]
15-
scx_cargo = { path = "../../scx_cargo", version = "1.0.23" }
16-
scx_utils = { path = "../../scx_utils", version = "1.0.23" }
15+
scx_cargo = { path = "../../scx_cargo", version = "1.0.24" }
16+
scx_utils = { path = "../../scx_utils", version = "1.0.24" }

rust/scx_bpf_compat/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_bpf_compat"
3-
version = "1.0.17"
3+
version = "1.0.18"
44
edition = "2021"
55
description = "BPF compatibility testing utilities for sched_ext"
66
license = "GPL-2.0-only"
@@ -12,12 +12,12 @@ homepage = "https://github.com/sched-ext/scx"
1212
ci.use_clippy = true
1313

1414
[dependencies]
15-
scx_utils = { path = "../scx_utils", version = "1.0.23" }
15+
scx_utils = { path = "../scx_utils", version = "1.0.24" }
1616

1717
anyhow = "1.0.65"
1818
libbpf-rs = "=0.26.0-beta.1"
1919
log = "0.4.17"
2020
once_cell = "1.20.2"
2121

2222
[build-dependencies]
23-
scx_cargo = { path = "../scx_cargo", version = "1.0.23" }
23+
scx_cargo = { path = "../scx_cargo", version = "1.0.24" }

rust/scx_bpf_unittests/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_bpf_unittests"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55

66
publish = false

rust/scx_cargo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "scx_cargo"
3-
version = "1.0.23"
3+
version = "1.0.24"
44
edition = "2021"
55
authors = ["Tejun Heo <[email protected]>"]
66
license = "GPL-2.0-only"
77
repository = "https://github.com/sched-ext/scx"
88
description = "Build time utilities for sched_ext schedulers"
99

1010
[dependencies]
11-
scx_utils = { path = "../scx_utils", version = "1.0.23" }
11+
scx_utils = { path = "../scx_utils", version = "1.0.24" }

rust/scx_raw_pmu/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_raw_pmu"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
description = "Utilities to handle raw PMU counters in sched_ext schedulers"
66
license = "GPL-2.0-only"
@@ -11,12 +11,12 @@ csv = "1.3.1"
1111
include_dir = "0.7.4"
1212
procfs = "0.15.1"
1313
regex = "1.11.2"
14-
scx_utils = { path = "../scx_utils", version = "1.0.23" }
14+
scx_utils = { path = "../scx_utils", version = "1.0.24" }
1515
serde = { version = "1.0.215", features = ["derive"] }
1616
serde_json = "1.0.133"
1717

1818
[dev-dependencies]
1919
tempfile = "3.19.1"
2020

2121
[build-dependencies]
22-
scx_utils = { path = "../scx_utils", version = "1.0.23" }
22+
scx_utils = { path = "../scx_utils", version = "1.0.24" }

rust/scx_rustland_core/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_rustland_core"
3-
version = "2.4.7"
3+
version = "2.4.8"
44
edition = "2021"
55
authors = ["Andrea Righi <[email protected]>"]
66
license = "GPL-2.0-only"
@@ -13,7 +13,7 @@ plain = "0.2.3"
1313
libbpf-rs = "=0.26.0-beta.1"
1414
libc = "0.2.175"
1515
seccomp = "0.1"
16-
scx_utils = { path = "../scx_utils", version = "1.0.23" }
16+
scx_utils = { path = "../scx_utils", version = "1.0.24" }
1717

1818
[lib]
1919
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.18"
3+
version = "1.0.19"
44
edition = "2021"
55
authors = ["Tejun Heo <[email protected]>"]
66
license = "GPL-2.0-only"

0 commit comments

Comments
 (0)