Skip to content

Commit 644edc4

Browse files
zenshanda-ai
andcommitted
chore(release): bump brain to v0.6.10
Update the release version, refresh the dependency lockfile, and expand CI coverage across Linux, Windows, and macOS. Co-Authored-By: Anda Bot <noreply@anda.bot>
1 parent d1eae0e commit 644edc4

4 files changed

Lines changed: 43 additions & 19 deletions

File tree

.github/workflows/test.yml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,28 @@ on:
66
branches: ["main"]
77
jobs:
88
test:
9-
runs-on: ubuntu-latest
9+
name: Test (${{ matrix.os }})
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
os: [ubuntu-latest, windows-latest, macos-latest]
1015
steps:
1116
- uses: actions/checkout@v4
12-
- name: Run tests
17+
- name: Install protobuf compiler (Linux)
18+
if: runner.os == 'Linux'
1319
run: |
1420
sudo apt-get update
1521
sudo apt-get install -y --no-install-recommends -o Acquire::Retries=3 protobuf-compiler
16-
rustup update --no-self-update stable
17-
cargo clippy --all-targets --all-features
18-
cargo test --workspace -- --nocapture
22+
- name: Install protobuf compiler (Windows)
23+
if: runner.os == 'Windows'
24+
run: choco install protoc -y --no-progress
25+
- name: Install protobuf compiler (macOS)
26+
if: runner.os == 'macOS'
27+
run: brew install protobuf
28+
- name: Install Rust stable
29+
run: rustup update --no-self-update stable
30+
- name: Run clippy
31+
run: cargo clippy --all-targets --all-features
32+
- name: Run tests
33+
run: cargo test --workspace -- --nocapture

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to the Anda Brain project.
44

5+
## [0.6.10] — 2026-06-07
6+
7+
### Changed
8+
- **CI now validates the workspace on Linux, Windows, and macOS.** The GitHub Actions test job now uses an OS matrix, installs `protoc` per runner, and runs clippy plus workspace tests on all three platforms.
9+
- **Dependencies updated for cross-platform runtime fixes.** `anda_core` 0.12.7 → 0.12.8 and `anda_engine` 0.12.30 → 0.12.32, picking up the latest platform-aware runtime support; transitive `bitflags` updated to 2.13.0.
10+
511
## [0.6.9] — 2026-06-06
612

713
### Changed

Cargo.lock

Lines changed: 16 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

anda_brain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "anda_brain"
33
publish = true
4-
version = "0.6.9"
4+
version = "0.6.10"
55
description.workspace = true
66
edition.workspace = true
77
repository.workspace = true

0 commit comments

Comments
 (0)