From dae6a8816a73233b26d7f552e0fc3030428ee0d4 Mon Sep 17 00:00:00 2001 From: Alexandre Pasmantier Date: Fri, 21 Mar 2025 21:35:27 +0100 Subject: [PATCH] chore: bump to 0.11.3 --- .github/workflows/cd.yml | 16 ++++++++++++---- Cargo.lock | 14 +++++++------- Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 12 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index b30a554..73b834f 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -104,6 +104,14 @@ jobs: profile: minimal override: true + + - name: Install musl for musl target + if: ${{ matrix.target }} == x86_64-unknown-linux-musl + shell: bash + run: | + sudo apt update + sudo apt-get install -y musl musl-tools + - uses: Swatinem/rust-cache@v2 - name: Cargo build uses: actions-rs/cargo@v1 @@ -144,7 +152,7 @@ jobs: ########## create tar.gz ########## - RELEASE_NAME=tv-${GITHUB_REF/refs\/tags\//}-${{ matrix.os-name }}-${{ matrix.architecture }} + RELEASE_NAME=tv-${GITHUB_REF/refs\/tags\//}-${{ matrix.target }} echo "RELEASE_NAME=$RELEASE_NAME" >> "$GITHUB_ENV" # create the directory for the archive @@ -196,9 +204,9 @@ jobs: - target: x86_64-unknown-linux-gnu os: linux arch: x86_64 - - target: aarch64-unknown-linux-gnu - os: linux - arch: arm64 + # - target: aarch64-unknown-linux-gnu + # os: linux + # arch: arm64 env: # Emit backtraces on panics. diff --git a/Cargo.lock b/Cargo.lock index ec81626..32a9edf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -349,9 +349,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.16" +version = "1.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c" +checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a" dependencies = [ "jobserver", "libc", @@ -2209,7 +2209,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "television" -version = "0.11.2" +version = "0.11.3" dependencies = [ "anyhow", "base64", @@ -2894,18 +2894,18 @@ checksum = "4de5f056fb9dc8b7908754867544e26145767187aaac5a98495e88ad7cb8a80f" [[package]] name = "zerocopy" -version = "0.8.23" +version = "0.8.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd97444d05a4328b90e75e503a34bad781f14e28a823ad3557f0750df1ebcbc6" +checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.23" +version = "0.8.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6352c01d0edd5db859a63e2605f4ea3183ddbd15e2c4a9e7d32184df75e4f154" +checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 25f59bf..c53dbf0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "television" -version = "0.11.2" +version = "0.11.3" edition = "2021" description = "A cross-platform, fast and extensible general purpose fuzzy finder TUI." license = "MIT"