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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.7.0"
".": "0.8.0"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.8.0](https://github.com/akua-dev/cli/compare/v0.7.0...v0.8.0) (2026-07-14)


### Features

* **release:** publish installable multi-platform CLI artifacts ([#21](https://github.com/akua-dev/cli/issues/21)) ([8a7568f](https://github.com/akua-dev/cli/commit/8a7568f01fb7f99b0b5885de4c6e1c4d914e6531))
* **skills:** add canonical Akua agent skill ([#20](https://github.com/akua-dev/cli/issues/20)) ([3ec5ae4](https://github.com/akua-dev/cli/commit/3ec5ae4e0d67e7f2dbb1e43e57676a97ecd1f7f9))

## [0.7.0](https://github.com/akua-dev/cli/compare/v0.6.1...v0.7.0) (2026-07-11)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@akua-dev/cli",
"version": "0.7.0",
"version": "0.8.0",
"private": false,
"type": "module",
"description": "Akua Cloud CLI",
Expand Down
2 changes: 1 addition & 1 deletion skills/akua/skill-package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema_version": 1,
"name": "akua",
"version": "0.7.0",
"version": "0.8.0",
"provenance": {
"repository": "https://github.com/akua-dev/cli",
"path": "skills/akua/SKILL.md",
Expand Down
2 changes: 1 addition & 1 deletion src/bin/akua.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { AkuaCliError, commandNotImplemented, usageError } from "../runtime/erro
import { detectOutputMode, type OutputMode } from "../runtime/mode";
import { renderError, renderSuccess, type RenderEnvelope } from "../runtime/render";

const VERSION = "0.7.0"; // x-release-please-version
const VERSION = "0.8.0"; // x-release-please-version

export async function main(argv = process.argv.slice(2), env = process.env): Promise<number> {
let mode: OutputMode = fallbackErrorMode(argv);
Expand Down
Loading