chore: bump to 0.11.2

This commit is contained in:
Alexandre Pasmantier 2025-03-21 00:32:15 +01:00
parent 05e3ba3b75
commit 918dc6686d
3 changed files with 8 additions and 10 deletions

View File

@ -228,10 +228,10 @@ jobs:
run: | run: |
rustup target add ${{ matrix.target }} rustup target add ${{ matrix.target }}
- name: Install cargo-deb - name: Install cargo-deb and cross
shell: bash shell: bash
run: | run: |
cargo install cargo-deb cargo install cargo-deb cross
- name: Create deployment directory - name: Create deployment directory
shell: bash shell: bash
@ -245,11 +245,6 @@ jobs:
run: | run: |
cp man/tv.1 "$DEPLOY_DIR/" cp man/tv.1 "$DEPLOY_DIR/"
- name: Check dependencies
shell: bash
run: |
cargo tree --target ${{ matrix.target }} --no-dedupe
- name: Build release binary - name: Build release binary
shell: bash shell: bash
run: | run: |
@ -261,7 +256,10 @@ jobs:
# if aarch64, we need to install the cross compiler since we're running x86_64 # if aarch64, we need to install the cross compiler since we're running x86_64
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
sudo apt-get install -y --no-install-recommends gcc-aarch64-linux-gnu sudo apt-get install -y --no-install-recommends gcc-aarch64-linux-gnu
cargo deb --profile deb --target ${{ matrix.target }} -o "$DEB_DIR/$DEB_NAME" -- --no-default-features --features zero-copy,simd,fancy
cargo deb --profile deb --target ${{ matrix.target }} -o "$DEB_DIR/$DEB_NAME" \
--cargo-build cross
-- --no-default-features --features zero-copy,simd,fancy
else else
cargo deb --profile deb --target ${{ matrix.target }} -o "$DEB_DIR/$DEB_NAME" cargo deb --profile deb --target ${{ matrix.target }} -o "$DEB_DIR/$DEB_NAME"
fi fi

2
Cargo.lock generated
View File

@ -2209,7 +2209,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
[[package]] [[package]]
name = "television" name = "television"
version = "0.11.1" version = "0.11.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"base64", "base64",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "television" name = "television"
version = "0.11.1" version = "0.11.2"
edition = "2021" edition = "2021"
description = "A cross-platform, fast and extensible general purpose fuzzy finder TUI." description = "A cross-platform, fast and extensible general purpose fuzzy finder TUI."
license = "MIT" license = "MIT"