Skip to content

Commit

Permalink
oma-console-v0.18.0 oma-utils-v0.8.7 oma-pm-v0.36.0 oma-topics-v0.17.…
Browse files Browse the repository at this point in the history
…0 oma-refresh-v0.32.0
  • Loading branch information
eatradish committed Oct 18, 2024
1 parent 22b3774 commit 0a6d002
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 28 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion oma-console/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oma-console"
version = "0.17.5"
version = "0.18.0"
edition = "2021"
description = "Console and terminal emulator handling library used by oma"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions oma-pm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oma-pm"
version = "0.35.0"
version = "0.36.0"
edition = "2021"
description = "APT package manager API abstraction library"
license = "GPL-3.0-or-later"
Expand All @@ -23,7 +23,7 @@ tokio = { version = "1.15", default-features = false, features = [
"fs",
"rt-multi-thread",
] }
oma-console = { version = "^0.17.0", path = "../oma-console", default-features = false, features = [
oma-console = { version = "^0.18.0", path = "../oma-console", default-features = false, features = [
"print",
] }
fs4 = "0.10"
Expand All @@ -41,7 +41,7 @@ serde = { version = "1", features = ["derive"] }
[dev-dependencies]
dashmap = "6"
indicatif = "0.17"
oma-console = { version = "^0.17.0", path = "../oma-console", default-features = false, features = ["progress_bar_style"] }
oma-console = { version = "^0.18.0", path = "../oma-console", default-features = false, features = ["progress_bar_style"] }

[features]
aosc = []
6 changes: 3 additions & 3 deletions oma-refresh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oma-refresh"
version = "0.31.0"
version = "0.32.0"
edition = "2021"
description = "APT repository refresh handler library"
license = "GPL-3.0-or-later"
Expand All @@ -18,7 +18,7 @@ oma-debcontrol = "0.3"
sequoia-openpgp = { version = "1.20", default-features = false }
anyhow = "1.0"
chrono = { version = "0.4", features = ["unstable-locales"] }
oma-topics = { version = "^0.16.0", path = "../oma-topics", optional = true, default-features = false }
oma-topics = { version = "^0.17.0", path = "../oma-topics", optional = true, default-features = false }
oma-utils = { version = "^0.8.0", path = "../oma-utils", features = ["dpkg"] }
tracing ="0.1"
smallvec = "1.1"
Expand All @@ -29,7 +29,7 @@ aho-corasick = "1.1.3"
# https://github.com/bytecodealliance/rustix/pull/1077
# rustix = { version = "0.38", features = ["fs"] }
nix = { version = "0.29", features = ["fs"] }
sysinfo = "0.31"
sysinfo = "0.32"
bon = "2.3"
once_cell = "1.19"

Expand Down
2 changes: 1 addition & 1 deletion oma-refresh/src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ fn get_apt_update_lock(download_dir: &Path) -> Result<()> {

if fl.l_pid != -1 {
let mut sys = System::new();
sys.refresh_processes(sysinfo::ProcessesToUpdate::All);
sys.refresh_processes(sysinfo::ProcessesToUpdate::All, true);
let Some(process) = sys.process(Pid::from(fl.l_pid as usize)) else {
return Err(RefreshError::SetLock(e));
};
Expand Down
2 changes: 1 addition & 1 deletion oma-topics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oma-topics"
version = "0.16.0"
version = "0.17.0"
edition = "2021"
description = "AOSC OS topic (testing) repository manager used by oma"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions oma-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oma-utils"
version = "0.8.6"
version = "0.8.7"
edition = "2021"
description = "General system API and utilities used by oma"
license = "MIT"
Expand All @@ -11,7 +11,7 @@ license = "MIT"
thiserror = "1.0"
number_prefix = { version = "0.4", optional = true }
os-release = "0.1"
oma-console = { version = "^0.17", path = "../oma-console", optional = true, default-features = false, features = [
oma-console = { version = "^0.18", path = "../oma-console", optional = true, default-features = false, features = [
"print",
] }
zbus = { version = "4.1", optional = true }
Expand Down

0 comments on commit 0a6d002

Please sign in to comment.