Skip to content

Commit

Permalink
Merge pull request #1095 from pkgxdev/fix-aliases-exists
Browse files Browse the repository at this point in the history
Fix resync
  • Loading branch information
mxcl authored Jan 26, 2025
2 parents 40f36cc + c3d279e commit 6d7eed8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "pkgx"
description = "Run anything"
authors = ["Max Howell <[email protected]>", "Jacob Heider <[email protected]>"]
license = "Apache-2.0"
version = "2.1.2"
version = "2.1.3"
edition = "2021"
repository = "https://github.com/pkgxdev/pkgx"

Expand All @@ -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",
] }
Expand Down
2 changes: 1 addition & 1 deletion crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "libpkgx"
description = "Install and run `pkgx` packages"
authors = ["Max Howell <[email protected]>", "Jacob Heider <[email protected]>"]
license = "Apache-2.0"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
repository = "https://github.com/pkgxdev/pkgx"

Expand Down
1 change: 1 addition & 0 deletions crates/lib/src/pantry_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pub fn cache(config: &Config, conn: &mut Connection) -> Result<(), Box<dyn Error
DROP TABLE IF EXISTS dependencies;
DROP TABLE IF EXISTS companions;
DROP TABLE IF EXISTS runtime_env;
DROP TABLE IF EXISTS aliases;
CREATE TABLE provides (
project TEXT,
program TEXT
Expand Down

0 comments on commit 6d7eed8

Please sign in to comment.