Skip to content

Commit 6d7eed8

Browse files
authored
Merge pull request #1095 from pkgxdev/fix-aliases-exists
Fix resync
2 parents 40f36cc + c3d279e commit 6d7eed8

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pkgx"
33
description = "Run anything"
44
authors = ["Max Howell <[email protected]>", "Jacob Heider <[email protected]>"]
55
license = "Apache-2.0"
6-
version = "2.1.2"
6+
version = "2.1.3"
77
edition = "2021"
88
repository = "https://github.com/pkgxdev/pkgx"
99

@@ -14,7 +14,7 @@ regex = "1.11.1"
1414
indicatif = "0.17.9"
1515
nix = { version = "0.29.0", features = ["process"] }
1616
serde_json = "1.0.135"
17-
libpkgx = { version = "0.2.0", path = "../lib" }
17+
libpkgx = { version = "0.2.1", path = "../lib" }
1818
console = { version = "0.15", default-features = false, features = [
1919
"ansi-parsing",
2020
] }

crates/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libpkgx"
33
description = "Install and run `pkgx` packages"
44
authors = ["Max Howell <[email protected]>", "Jacob Heider <[email protected]>"]
55
license = "Apache-2.0"
6-
version = "0.2.0"
6+
version = "0.2.1"
77
edition = "2021"
88
repository = "https://github.com/pkgxdev/pkgx"
99

crates/lib/src/pantry_db.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pub fn cache(config: &Config, conn: &mut Connection) -> Result<(), Box<dyn Error
1414
DROP TABLE IF EXISTS dependencies;
1515
DROP TABLE IF EXISTS companions;
1616
DROP TABLE IF EXISTS runtime_env;
17+
DROP TABLE IF EXISTS aliases;
1718
CREATE TABLE provides (
1819
project TEXT,
1920
program TEXT

0 commit comments

Comments
 (0)