Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ Versions follow [Semantic Versioning](https://semver.org/).

---

## [0.5.2] — 2026-07-06

> The two majors from the 0.5.1 live lifecycle verification. Image published to GHCR;
> deploy via `ainode update` at the operator's discretion.

### Fixed
- **Download Cancel is real** (#56) — cancel was a backend no-op (the flag was never
wired into `snapshot_download`; a cancelled 15 GB download ran to completion).
Downloads are now per-file, cancel-checked between files, **commit-pinned** (single
sha for the whole snapshot — no mixed-commit directories if the repo is pushed
mid-download) and parallel (`AINODE_DOWNLOAD_MAX_WORKERS`, cancellable futures).
- **Launch form respects user node picks** (#56) — auto-recommend fired on model
select and silently reset the node dots to the head, landing node-targeted loads
on the wrong machine. Manual node toggles now set an intent flag auto-recommend
honors.

---

## [0.5.1] — 2026-07-06

> Same-day follow-up to 0.5.0: every defect found while live-proving the 0.5.0 fleet
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ainode"
version = "0.5.1"
version = "0.5.2"
description = "Turn any NVIDIA GPU into a local AI platform. Inference + fine-tuning in your browser."
readme = "README.md"
license = {text = "Apache-2.0"}
Expand Down
Loading