diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a39231b..8291535 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,6 +71,7 @@ jobs: prerelease: false files: dist/scie-jump* fail_on_unmatched_files: true + discussion_category_name: Announcements aarch64-release-trigger: name: Trigger Circle CI Linux aarch64 Github Release needs: diff --git a/CHANGES.md b/CHANGES.md index 36642d3..a2a1547 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Release Notes +## 0.2.1 + +This release fixes blob file locks in the presence of boot bindings that delete blobs as part of +their post install preparations. + ## 0.2.0 This release brings support for boot bindings: commands that will be run exactly once to perform diff --git a/Cargo.lock b/Cargo.lock index 1cb4caa..a748558 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,7 +306,7 @@ dependencies = [ [[package]] name = "jump" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bstr", "byteorder", @@ -582,7 +582,7 @@ dependencies = [ [[package]] name = "scie-jump" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bstr", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 3b01099..8071cf8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "scie-jump" -version = "0.2.0" +version = "0.2.1" description = "The self contained interpreted executable launcher." authors = [ "John Sirois ", diff --git a/jump/Cargo.toml b/jump/Cargo.toml index 1471120..bef795f 100644 --- a/jump/Cargo.toml +++ b/jump/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jump" -version = "0.2.0" +version = "0.2.1" description = "The bulk of the scie-jump binary logic." authors = [ "John Sirois ",