Skip to content

Commit 3e2beb3

Browse files
author
codejunkie99
committed
chore: prepare v0.16.1 release
1 parent 106db3a commit 3e2beb3

3 files changed

Lines changed: 38 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ All notable changes to this project.
55
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.16.1] — 2026-05-10
9+
10+
Patch release. Ships the production-ready getting-started guide from PR #49
11+
and fixes stale version text in the onboarding banner.
12+
13+
### Changed
14+
- `docs/getting-started.md` now leads with the Homebrew install path while
15+
documenting source-checkout and PowerShell flows separately.
16+
- The guide now explains which commands are available through the global
17+
`agentic-stack` wrapper and which source-checkout users should run through
18+
`./install.sh`.
19+
- The guide now documents current project-management verbs, including
20+
`dashboard`, `status`, `doctor`, `upgrade`, `sync-manifest`, `add`,
21+
`remove`, and `manage`.
22+
23+
### Fixed
24+
- The onboarding banner now derives its displayed version from
25+
`harness_manager.__version__` instead of showing stale `v0.8.0` text.
26+
827
## [0.16.0] — 2026-05-09
928

1029
Minor release. Adds a safe installed-project upgrade path and repairs skill

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,24 @@ metrics without training a model or sending telemetry.
2525
<img src="docs/diagram.svg" alt="agentic-stack architecture" width="880"/>
2626
</p>
2727

28-
### New in v0.16.0 — safe project upgrades
28+
### New in v0.16.1 — getting-started refresh
29+
30+
Patch release. Ships the production-ready getting-started guide from PR #49
31+
and fixes onboarding version drift in the first-run banner.
32+
33+
- **Accurate install paths.** The getting-started guide now separates
34+
Homebrew, source checkout, and PowerShell flows so users do not expect a
35+
global `agentic-stack` command from a plain clone.
36+
- **Current management commands.** The guide documents `dashboard`, `status`,
37+
`doctor`, `upgrade`, `sync-manifest`, `add`, `remove`, and `manage` for both
38+
Homebrew and source-checkout users.
39+
- **Correct onboarding version.** The setup banner now reads the package
40+
version from `harness_manager.__version__` instead of showing stale release
41+
text.
42+
43+
See [CHANGELOG.md](CHANGELOG.md) for the full list.
44+
45+
### v0.16.0 — safe project upgrades
2946

3047
Minor release. Adds `agentic-stack upgrade` and `agentic-stack sync-manifest`
3148
so installed projects can pick up new `.agent` infrastructure and skill
@@ -43,8 +60,6 @@ metadata without clobbering adapter settings or user memory.
4360
commands point to missing `.agent` files or hook scripts are present but
4461
unwired.
4562

46-
See [CHANGELOG.md](CHANGELOG.md) for the full list.
47-
4863
### v0.12.0 — tldraw visual canvas
4964

5065
Minor release. Adds an opt-in `tldraw` seed skill for live canvas diagrams and

harness_manager/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
The "harness_manager" name is internal only and never appears in CLI help, docs,
77
or error messages users see.
88
"""
9-
__version__ = "0.16.0"
9+
__version__ = "0.16.1"

0 commit comments

Comments
 (0)