Compare commits

...

4 Commits

Author SHA1 Message Date
release-plz-for-ac-qu-ai-nt[bot]
5e878f1c3c chore: release 2024-10-10 04:42:53 +00:00
J / Jacob Babich
74157b1298 ci(check-and-build-and-test): see if changing the --output-format to json for cargo msrv verify will make it actually show up in the GitHub Actions log
Some checks are pending
Release-plz / Release-plz (push) Waiting to run
2024-10-10 00:40:43 -04:00
J / Jacob Babich
ff6842ad3d ci(check-and-build-and-test): extend the timeout for the msrv job 2024-10-09 23:16:05 -04:00
J / Jacob Babich
5f52981141 ci(check-and-build-and-test): simplify the msrv job, because the output I see for cargo msrv verify is informative enough (not sure why I tried otherwise) 2024-10-09 23:15:17 -04:00
4 changed files with 11 additions and 11 deletions

View File

@@ -211,7 +211,7 @@ jobs:
target: x86_64-pc-windows-msvc target: x86_64-pc-windows-msvc
name: Verify MSRV of ${{ matrix.crate_directory }} for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) name: Verify MSRV of ${{ matrix.crate_directory }} for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }})
runs-on: ${{ matrix.supporteds.runner }} runs-on: ${{ matrix.supporteds.runner }}
timeout-minutes: 2 timeout-minutes: 4
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -230,12 +230,5 @@ jobs:
cache-on-failure: "true" cache-on-failure: "true"
- name: Verify declared MSRV (minimum supported Rust version) - name: Verify declared MSRV (minimum supported Rust version)
id: verify run: cargo msrv verify --output-format json
continue-on-error: true
run: cargo msrv verify
working-directory: ${{ matrix.crate_directory }}
- name: Report actual MSRV and reason for failing the declared version
if: ${{ steps.verify.outcome == 'failure' }}
run: cargo msrv find && exit 1
working-directory: ${{ matrix.crate_directory }} working-directory: ${{ matrix.crate_directory }}

2
Cargo.lock generated
View File

@@ -24,7 +24,7 @@ dependencies = [
[[package]] [[package]]
name = "ac-qu-ai-nt-core" name = "ac-qu-ai-nt-core"
version = "0.0.3" version = "0.0.4"
dependencies = [ dependencies = [
"llama-cpp-2", "llama-cpp-2",
"snafu", "snafu",

View File

@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.0.4](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.3...ac-qu-ai-nt-core-v0.0.4) - 2024-10-10
### Other
- *(ac-qu-ai-nt-core)* update `llama-cpp-2`
- *(core)* add `snafu` as a dependency
## [0.0.3](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.2...ac-qu-ai-nt-core-v0.0.3) - 2024-10-07 ## [0.0.3](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.2...ac-qu-ai-nt-core-v0.0.3) - 2024-10-07
### Other ### Other

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "ac-qu-ai-nt-core" name = "ac-qu-ai-nt-core"
description = "The core library of ac-qu-ai-nt. If you're looking for the application, see cli-clap or gui-eframe or tui-ratatui or the multibinary" description = "The core library of ac-qu-ai-nt. If you're looking for the application, see cli-clap or gui-eframe or tui-ratatui or the multibinary"
version = "0.0.3" version = "0.0.4"
edition = "2021" edition = "2021"
rust-version = "1.76" rust-version = "1.76"