Skip to content

Commit 6b2cbe3

Browse files
committed
versions: bump versions for 1.0.15 release
Downgraded tempfile in scxtop so all crates use the same dependency but left sysinfo and procfs as they cause build failures if unified. Signed-off-by: Jake Hillion <[email protected]>
1 parent e3abb59 commit 6b2cbe3

File tree

27 files changed

+124
-124
lines changed

27 files changed

+124
-124
lines changed

Cargo.lock

Lines changed: 25 additions & 25 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,6 +1,6 @@
11
project('sched_ext schedulers', 'c',
22
default_options : ['c_std=gnu11'], # Use gnu11 as the C standard to compile vmlinux.h without errors.
3-
version: '1.0.14',
3+
version: '1.0.15',
44
license: 'GPL-2.0',
55
meson_version : '>= 1.2.0',)
66

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.14"
3+
version = "1.0.15"
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.18" }
15+
scx_utils = { path = "../scx_utils", version = "1.0.19" }
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_utils = { path = "../scx_utils", version = "1.0.18" }
23+
scx_utils = { path = "../scx_utils", version = "1.0.19" }

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.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
publish = false

rust/scx_lib_selftests/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_lib_selftests"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
edition = "2021"
55

66
publish = false
@@ -9,7 +9,7 @@ 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.18" }
12+
scx_utils = { path = "../scx_utils", version = "1.0.19" }
1313

1414
[build-dependencies]
15-
scx_utils = { path = "../scx_utils", version = "1.0.18" }
15+
scx_utils = { path = "../scx_utils", version = "1.0.19" }

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.3.3"
3+
version = "2.3.4"
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.137"
1515
seccomp = "0.1"
16-
scx_utils = { path = "../scx_utils", version = "1.0.18" }
16+
scx_utils = { path = "../scx_utils", version = "1.0.19" }
1717

1818

1919
[lib]

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.14"
3+
version = "1.0.15"
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.14"
3+
version = "1.0.15"
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.14" }
16+
scx_stats = { path = "..", version = "1.0.15" }
1717
serde_json = "1.0.133"
1818
syn = { version = "2.0", features = ["extra-traits", "full"] }
1919

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scx_userspace_arena"
3-
version = "1.0.14"
3+
version = "1.0.15"
44
edition = "2021"
55
authors = ["Jake Hillion <[email protected]>"]
66
license = "GPL-2.0-only"
@@ -11,11 +11,11 @@ description = "Utilities for interacting with BPF arenas from userspace in sched
1111
ci.use_clippy = true
1212

1313
[dependencies]
14-
scx_utils = { path = "../scx_utils", version = "1.0.18" }
14+
scx_utils = { path = "../scx_utils", version = "1.0.19" }
1515

1616
anyhow = "1.0.65"
1717
buddy_system_allocator = { version = "0.11.0", default-features = false }
1818
libbpf-rs = "=0.26.0-beta.1"
1919

2020
[build-dependencies]
21-
scx_utils = { path = "../scx_utils", version = "1.0.18" }
21+
scx_utils = { path = "../scx_utils", version = "1.0.19" }

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.18"
3+
version = "1.0.19"
44
edition = "2021"
55
authors = ["Tejun Heo <[email protected]>"]
66
license = "GPL-2.0-only"
@@ -22,7 +22,7 @@ nvml-wrapper = { version = "0.11.0", optional = true }
2222
nvml-wrapper-sys = { version = "0.9.0", optional = true }
2323
paste = "1.0"
2424
regex = "1.11.1"
25-
scx_stats = { path = "../scx_stats", version = "1.0.14" }
25+
scx_stats = { path = "../scx_stats", version = "1.0.15" }
2626
serde = { version = "1.0.215", features = ["derive"] }
2727
sscanf = "0.4"
2828
tar = "0.4"

0 commit comments

Comments
 (0)