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.8.0"
".": "0.9.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

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


### Features

* **loader:** add the compiled Agent OS HCloud provider-loader companion ([#23](https://github.com/akua-dev/cli/issues/23)) ([f235639](https://github.com/akua-dev/cli/commit/f23563969bbc533155cf545cbf7cdf2165613408))

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


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.8.0",
"version": "0.9.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.8.0",
"version": "0.9.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 @@ -7,7 +7,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.8.0"; // x-release-please-version
const VERSION = "0.9.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
13 changes: 13 additions & 0 deletions test/release-please-config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,19 @@ describe("release-please configuration", () => {
expect(manifest["."]).toMatch(/^\d+\.\d+\.\d+(?:[-+][0-9A-Za-z.-]+)?$/);
});

test("keeps package, binary, and skill release metadata coherent", () => {
const manifest = JSON.parse(readFileSync(".release-please-manifest.json", "utf8")) as Record<string, string>;
const packageVersion = JSON.parse(readFileSync("package.json", "utf8")) as { version: string };
const skillPackage = JSON.parse(readFileSync("skills/akua/skill-package.json", "utf8")) as { version: string };
const cli = readFileSync("src/bin/akua.ts", "utf8");
const changelog = readFileSync("CHANGELOG.md", "utf8");

expect(packageVersion.version).toBe(manifest["."]);
expect(skillPackage.version).toBe(manifest["."]);
expect(cli).toContain(`const VERSION = "${manifest["."]}"; // x-release-please-version`);
expect(changelog).toContain(`## [${manifest["."]}]`);
});

test("falls back to the job token when the optional release token is unavailable", () => {
const workflow = readFileSync(".github/workflows/release-please.yml", "utf8");

Expand Down
Loading