From 6d14d708bf4b0f9732118776ce7d351136862905 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 6 Jan 2022 16:13:23 -0500 Subject: [PATCH 1/2] Switch to published ostree crate In prep for releasing a new version. --- lib/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index bb6964f9..119a15c3 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -29,8 +29,7 @@ oci-spec = "0.5.0" openat = "0.1.20" openat-ext = "0.2.0" openssl = "0.10.33" -# ostree = { features = ["v2021_5"], version = "0.13.3" } -ostree = { git = "https://github.com/ostreedev/ostree-rs", features = ["v2021_5"] } +ostree = { features = ["v2021_5"], version = "0.13.4" } phf = { features = ["macros"], version = "0.10" } pin-project = "1.0" serde = { features = ["derive"], version = "1.0.125" } From 359201e192b4a7cdcc95ff69dd2f511bf9936e62 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 6 Jan 2022 16:50:20 -0500 Subject: [PATCH 2/2] Release 0.6.0 Semver bump because of various API changes. --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 119a15c3..c45f1560 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" name = "ostree-ext" readme = "README.md" repository = "https://github.com/ostreedev/ostree-rs-ext" -version = "0.5.1" +version = "0.6.0" [dependencies] anyhow = "1.0"