chore: bump to 0.11.0

This commit is contained in:
Alexandre Pasmantier 2025-03-20 15:16:04 +01:00
parent 731bc7ee80
commit 409d951d3c
5 changed files with 27 additions and 27 deletions

View File

@ -46,6 +46,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
fail-fast: false
matrix: matrix:
include: include:
- os: macos-latest - os: macos-latest
@ -180,6 +181,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
fail-fast: false
matrix: matrix:
include: include:
- target: x86_64-unknown-linux-musl - target: x86_64-unknown-linux-musl
@ -224,13 +226,7 @@ jobs:
- name: Add rustup target - name: Add rustup target
shell: bash shell: bash
run: | run: |
rustup target add x86_64-unknown-linux-musl rustup target add ${{ matrix.target }}
# for some reason, the above action doesn't seem to set the target correctly
- name: Add rustup target
shell: bash
run: |
rustup target add x86_64-unknown-linux-musl
- name: Install cargo-deb - name: Install cargo-deb
shell: bash shell: bash
@ -252,6 +248,10 @@ jobs:
- name: Build release binary - name: Build release binary
shell: bash shell: bash
run: | run: |
# if aarch64-unknown-linux-gnu, we need to install the cross compiler
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
sudo apt-get install -y --no-install-recommends gcc-aarch64-linux-gnu
fi
cargo deb --profile deb --target ${{ matrix.target }} cargo deb --profile deb --target ${{ matrix.target }}
version="${{ github.ref_name }}" version="${{ github.ref_name }}"
echo "DEB_DIR=target/${{ matrix.target }}/debian" >> $GITHUB_ENV echo "DEB_DIR=target/${{ matrix.target }}/debian" >> $GITHUB_ENV

30
Cargo.lock generated
View File

@ -646,9 +646,9 @@ dependencies = [
[[package]] [[package]]
name = "deranged" name = "deranged"
version = "0.3.11" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
dependencies = [ dependencies = [
"powerfmt", "powerfmt",
] ]
@ -1888,9 +1888,9 @@ dependencies = [
[[package]] [[package]]
name = "rustix" name = "rustix"
version = "1.0.2" version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7178faa4b75a30e269c71e61c353ce2748cf3d76f0c44c393f4e60abf49b825" checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96"
dependencies = [ dependencies = [
"bitflags 2.9.0", "bitflags 2.9.0",
"errno", "errno",
@ -2183,7 +2183,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
[[package]] [[package]]
name = "television" name = "television"
version = "0.10.10" version = "0.11.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"base64", "base64",
@ -2225,7 +2225,7 @@ dependencies = [
[[package]] [[package]]
name = "television-derive" name = "television-derive"
version = "0.0.25" version = "0.0.26"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -2234,14 +2234,14 @@ dependencies = [
[[package]] [[package]]
name = "tempfile" name = "tempfile"
version = "3.19.0" version = "3.19.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "488960f40a3fd53d72c2a29a58722561dee8afdd175bd88e3db4677d7b2ba600" checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
dependencies = [ dependencies = [
"fastrand", "fastrand",
"getrandom 0.3.2", "getrandom 0.3.2",
"once_cell", "once_cell",
"rustix 1.0.2", "rustix 1.0.3",
"windows-sys 0.59.0", "windows-sys 0.59.0",
] ]
@ -2334,9 +2334,9 @@ dependencies = [
[[package]] [[package]]
name = "time" name = "time"
version = "0.3.39" version = "0.3.40"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dad298b01a40a23aac4580b67e3dbedb7cc8402f3592d7f49469de2ea4aecdd8" checksum = "9d9c75b47bdff86fa3334a3db91356b8d7d86a9b839dab7d0bdc5c3d3a077618"
dependencies = [ dependencies = [
"deranged", "deranged",
"itoa", "itoa",
@ -2349,15 +2349,15 @@ dependencies = [
[[package]] [[package]]
name = "time-core" name = "time-core"
version = "0.1.3" version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "765c97a5b985b7c11d7bc27fa927dc4fe6af3a6dfb021d28deb60d3bf51e76ef" checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
[[package]] [[package]]
name = "time-macros" name = "time-macros"
version = "0.2.20" version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8093bc3e81c3bc5f7879de09619d06c9a5a5e45ca44dfeeb7225bae38005c5c" checksum = "29aa485584182073ed57fd5004aa09c371f021325014694e432313345865fd04"
dependencies = [ dependencies = [
"num-conv", "num-conv",
"time-core", "time-core",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "television" name = "television"
version = "0.10.10" version = "0.11.0"
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"
@ -31,7 +31,7 @@ build = "build.rs"
path = "television/lib.rs" path = "television/lib.rs"
[dependencies] [dependencies]
television-derive = { path = "television-derive", version = "0.0.25" } television-derive = { path = "television-derive", version = "0.0.26" }
anyhow = "1.0" anyhow = "1.0"
base64 = "0.22.1" base64 = "0.22.1"

View File

@ -1,6 +1,6 @@
.ie \n(.g .ds Aq \(aq .ie \n(.g .ds Aq \(aq
.el .ds Aq ' .el .ds Aq '
.TH television 1 "television 0.10.10" .TH television 1 "television 0.11.0"
.SH NAME .SH NAME
television \- A cross\-platform, fast and extensible general purpose fuzzy finder TUI. television \- A cross\-platform, fast and extensible general purpose fuzzy finder TUI.
.SH SYNOPSIS .SH SYNOPSIS
@ -104,6 +104,6 @@ Initializes shell completion ("tv init zsh")
television\-help(1) television\-help(1)
Print this message or the help of the given subcommand(s) Print this message or the help of the given subcommand(s)
.SH VERSION .SH VERSION
v0.10.10 v0.11.0
.SH AUTHORS .SH AUTHORS
Alexandre Pasmantier <alex.pasmant@gmail.com> Alexandre Pasmantier <alex.pasmant@gmail.com>

View File

@ -1,6 +1,6 @@
[package] [package]
name = "television-derive" name = "television-derive"
version = "0.0.25" version = "0.0.26"
edition = "2021" edition = "2021"
description = "The revolution will be televised." description = "The revolution will be televised."
license = "MIT" license = "MIT"