diff --git a/.circleci/config.yml b/.circleci/config.yml index a2e8a9c..c7472de 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,10 +26,12 @@ jobs: resource_class: arm.medium steps: - checkout - - rust/install: - version: nightly - - rust/format: - nightly-toolchain: true + # TODO(John Sirois): https://github.com/a-scie/jump/issues/174 + # Undo once https://github.com/rust-lang/rustfmt/issues/5964 is fixed. + #- rust/install: + # version: nightly + #- rust/format: + # nightly-toolchain: true - rust/install - rust/clippy - rust/test: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cca1eeb..6550620 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Check Formatting + # TODO(John Sirois): https://github.com/a-scie/jump/issues/174 + # Undo once https://github.com/rust-lang/rustfmt/issues/5964 is fixed. + if: matrix.os != 'macos-13-aarch64' run: | rustup toolchain add nightly -c rustfmt cargo +nightly fmt --check --all diff --git a/CHANGES.md b/CHANGES.md index 038c8e4..3b207e6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Release Notes +## 0.13.3 + +Ensure liblzma is statically linked. + ## 0.13.2 When `load_dotenv` is requested, propagate errors loading any `.env` file found. diff --git a/Cargo.lock b/Cargo.lock index 059f0e1..a4a1b2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,7 +436,7 @@ dependencies = [ [[package]] name = "jump" -version = "0.13.2" +version = "0.13.3" dependencies = [ "bstr", "byteorder", @@ -781,7 +781,7 @@ dependencies = [ [[package]] name = "scie-jump" -version = "0.13.2" +version = "0.13.3" dependencies = [ "bstr", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 6793d5c..d1f7f6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "scie-jump" -version = "0.13.2" +version = "0.13.3" description = "The self contained interpreted executable launcher." authors = [ "John Sirois ", diff --git a/jump/Cargo.toml b/jump/Cargo.toml index ff8f50f..784cf93 100644 --- a/jump/Cargo.toml +++ b/jump/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jump" -version = "0.13.2" +version = "0.13.3" description = "The bulk of the scie-jump binary logic." authors = [ "John Sirois ", @@ -30,7 +30,7 @@ structure = "0.1" tar = "0.4" tempfile = { workspace = true } tuple = "0.5" -xz2 = "0.1" +xz2 = { version = "0.1", features = ["static"] } zip = { workspace = true } zstd = "0.12" walkdir = "2.3"