diff --git a/Cargo.lock b/Cargo.lock index fea810cf..b03091b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -735,7 +735,7 @@ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "libpkgx" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "async-compression", @@ -1017,7 +1017,7 @@ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" [[package]] name = "pkgx" -version = "2.1.2" +version = "2.1.3" dependencies = [ "console", "indicatif", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 87f549e4..b1f6a5a2 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -3,7 +3,7 @@ name = "pkgx" description = "Run anything" authors = ["Max Howell ", "Jacob Heider "] license = "Apache-2.0" -version = "2.1.2" +version = "2.1.3" edition = "2021" repository = "https://github.com/pkgxdev/pkgx" @@ -14,7 +14,7 @@ regex = "1.11.1" indicatif = "0.17.9" nix = { version = "0.29.0", features = ["process"] } serde_json = "1.0.135" -libpkgx = { version = "0.2.0", path = "../lib" } +libpkgx = { version = "0.2.1", path = "../lib" } console = { version = "0.15", default-features = false, features = [ "ansi-parsing", ] } diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 31016c32..6857a0c5 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -3,7 +3,7 @@ name = "libpkgx" description = "Install and run `pkgx` packages" authors = ["Max Howell ", "Jacob Heider "] license = "Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" repository = "https://github.com/pkgxdev/pkgx" diff --git a/crates/lib/src/pantry_db.rs b/crates/lib/src/pantry_db.rs index 9cc1ad6a..61637dd7 100644 --- a/crates/lib/src/pantry_db.rs +++ b/crates/lib/src/pantry_db.rs @@ -14,6 +14,7 @@ pub fn cache(config: &Config, conn: &mut Connection) -> Result<(), Box