From 94f249de16db1fdf6f6d17a016c85702a04e1af3 Mon Sep 17 00:00:00 2001 From: iff Date: Tue, 8 Apr 2025 20:59:39 +0200 Subject: [PATCH] v0.7.2 --- .github/workflows/build.yaml | 9 ++------- CHANGELOG.md | 3 +++ Cargo.lock | 16 ++++++++-------- core/Cargo.toml | 2 +- module-request-ai/Cargo.toml | 2 +- 5 files changed, 15 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3292b43..04e953f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -81,21 +81,16 @@ jobs: key: ${{ matrix.target }} - name: Build - if: ${{ matrix.cross == false && matrix.musl == false }} + if: ${{ matrix.cross == false }} run: cargo build --release --workspace --locked --target ${{ matrix.target }} - - name: Build (musl) - if: ${{ matrix.cross == false && matrix.musl == true }} - run: - cargo build --release --workspace --no-default-features --locked --target ${{ matrix.target }} - - name: Build (cross) if: ${{ matrix.cross == true}} # cross 0.2.5 broken for android run: | cargo install cross --locked --git https://github.com/cross-rs/cross --rev 99b8069c0d977a14cd421ad8a3ef3255dc5802be - cross build --release --workspace --no-default-features --locked --target ${{ matrix.target }} + cross build --release --workspace --locked --target ${{ matrix.target }} - name: Package deb if: ${{ matrix.deb == true }} diff --git a/CHANGELOG.md b/CHANGELOG.md index cccf8d1..c286a34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.2] - 2025-04-08 + ### Added - Streaming output support for AI module @@ -233,6 +235,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 History start. [unreleased]: https://github.com/iffse/pay-respects/compare/v0.7.1..HEAD +[0.7.2]: https://github.com/iffse/pay-respects/compare/v0.7.1..0.7.2 [0.7.1]: https://github.com/iffse/pay-respects/compare/v0.7.0..v0.7.1 [0.7.0]: https://github.com/iffse/pay-respects/compare/v0.6.14..v0.7.0 [0.6.14]: https://github.com/iffse/pay-respects/compare/v0.6.13..v0.6.14 diff --git a/Cargo.lock b/Cargo.lock index d87c5c6..0c9cd29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -133,9 +133,9 @@ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" [[package]] name = "bstr" -version = "1.11.3" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" +checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4" dependencies = [ "memchr", "serde", @@ -856,9 +856,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "miniz_oxide" -version = "0.8.7" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff70ce3e48ae43fa075863cef62e8b43b71a4f2382229920e0df362592919430" +checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" dependencies = [ "adler2", ] @@ -962,7 +962,7 @@ dependencies = [ [[package]] name = "pay-respects" -version = "0.7.1" +version = "0.7.2" dependencies = [ "askama", "colored", @@ -977,7 +977,7 @@ dependencies = [ [[package]] name = "pay-respects-module-request-ai" -version = "0.2.0" +version = "0.2.1" dependencies = [ "askama", "colored", @@ -2338,9 +2338,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" [[package]] name = "winnow" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36" +checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10" dependencies = [ "memchr", ] diff --git a/core/Cargo.toml b/core/Cargo.toml index c4d28b0..983fffd 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pay-respects" authors = ["iff "] -version = "0.7.1" +version = "0.7.2" edition = "2021" # for crates.io diff --git a/module-request-ai/Cargo.toml b/module-request-ai/Cargo.toml index 456b173..d0857f5 100644 --- a/module-request-ai/Cargo.toml +++ b/module-request-ai/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pay-respects-module-request-ai" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "AI request module for the pay-respects CLI tool"