mirror of
https://github.com/TECHNOFAB11/pay-respects.git
synced 2025-12-11 22:10:09 +01:00
v0.7.2
This commit is contained in:
parent
6bab3c4792
commit
94f249de16
5 changed files with 15 additions and 17 deletions
9
.github/workflows/build.yaml
vendored
9
.github/workflows/build.yaml
vendored
|
|
@ -81,21 +81,16 @@ jobs:
|
||||||
key: ${{ matrix.target }}
|
key: ${{ matrix.target }}
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
if: ${{ matrix.cross == false && matrix.musl == false }}
|
if: ${{ matrix.cross == false }}
|
||||||
run:
|
run:
|
||||||
cargo build --release --workspace --locked --target ${{ matrix.target }}
|
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)
|
- name: Build (cross)
|
||||||
if: ${{ matrix.cross == true}}
|
if: ${{ matrix.cross == true}}
|
||||||
# cross 0.2.5 broken for android
|
# cross 0.2.5 broken for android
|
||||||
run: |
|
run: |
|
||||||
cargo install cross --locked --git https://github.com/cross-rs/cross --rev 99b8069c0d977a14cd421ad8a3ef3255dc5802be
|
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
|
- name: Package deb
|
||||||
if: ${{ matrix.deb == true }}
|
if: ${{ matrix.deb == true }}
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.7.2] - 2025-04-08
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Streaming output support for AI module
|
- 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.
|
History start.
|
||||||
|
|
||||||
[unreleased]: https://github.com/iffse/pay-respects/compare/v0.7.1..HEAD
|
[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.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.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
|
[0.6.14]: https://github.com/iffse/pay-respects/compare/v0.6.13..v0.6.14
|
||||||
|
|
|
||||||
16
Cargo.lock
generated
16
Cargo.lock
generated
|
|
@ -133,9 +133,9 @@ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bstr"
|
name = "bstr"
|
||||||
version = "1.11.3"
|
version = "1.12.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
|
checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"memchr",
|
"memchr",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
@ -856,9 +856,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "miniz_oxide"
|
name = "miniz_oxide"
|
||||||
version = "0.8.7"
|
version = "0.8.8"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ff70ce3e48ae43fa075863cef62e8b43b71a4f2382229920e0df362592919430"
|
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"adler2",
|
"adler2",
|
||||||
]
|
]
|
||||||
|
|
@ -962,7 +962,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pay-respects"
|
name = "pay-respects"
|
||||||
version = "0.7.1"
|
version = "0.7.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"askama",
|
"askama",
|
||||||
"colored",
|
"colored",
|
||||||
|
|
@ -977,7 +977,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pay-respects-module-request-ai"
|
name = "pay-respects-module-request-ai"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"askama",
|
"askama",
|
||||||
"colored",
|
"colored",
|
||||||
|
|
@ -2338,9 +2338,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "winnow"
|
name = "winnow"
|
||||||
version = "0.7.4"
|
version = "0.7.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36"
|
checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"memchr",
|
"memchr",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pay-respects"
|
name = "pay-respects"
|
||||||
authors = ["iff <iff@ik.me>"]
|
authors = ["iff <iff@ik.me>"]
|
||||||
version = "0.7.1"
|
version = "0.7.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# for crates.io
|
# for crates.io
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pay-respects-module-request-ai"
|
name = "pay-respects-module-request-ai"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
description = "AI request module for the pay-respects CLI tool"
|
description = "AI request module for the pay-respects CLI tool"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue