Skip to content

Commit 279fc52

Browse files
chore(release): bump version to 1.1.5
Bumps all plugin manifests and the root VERSION file to 1.1.5. Also fixes build.zig to always register the -Dversion option so release scripts can override the VERSION file at build time. Plugins updated: - Codex: integrations/codex-plugin/.codex-plugin/plugin.json - Claude Code: integrations/claude-code-plugin/.claude-plugin/plugin.json - OpenCode: integrations/opencode-plugin/package.json - OpenClaw: integrations/openclaw-plugin/package.json + openclaw.plugin.json - Hermes: integrations/hermes-plugin/plugin.yaml
1 parent 114149e commit 279fc52

8 files changed

Lines changed: 10 additions & 8 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.4
1+
1.1.5

build.zig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ const std = @import("std");
33
pub fn build(b: *std.Build) void {
44
const target = b.standardTargetOptions(.{});
55
const optimize = b.standardOptimizeOption(.{});
6+
const version_override = b.option([]const u8, "version", "Orca version metadata");
67
const version = blk: {
7-
const version_file = std.fs.cwd().readFileAlloc(b.allocator, "VERSION", 32) catch break :blk b.option([]const u8, "version", "Orca version metadata") orelse "1.1.0";
8+
if (version_override) |v| break :blk v;
9+
const version_file = std.fs.cwd().readFileAlloc(b.allocator, "VERSION", 32) catch break :blk "1.1.0";
810
const trimmed = std.mem.trim(u8, version_file, " \n\r\t");
911
const result = b.allocator.dupe(u8, trimmed) catch break :blk "1.1.0";
1012
b.allocator.free(version_file);

integrations/claude-code-plugin/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "orca",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "Orca safety hooks and skills for Claude Code.",
55
"author": {
66
"name": "Orca"

integrations/codex-plugin/.codex-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "orca",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "Orca safety hooks and skills for Codex.",
55
"author": {
66
"name": "Orca"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: orca
2-
version: 1.1.4
2+
version: 1.1.5
33
description: Orca runtime guardrails for Hermes Agent.
44
entrypoint: __init__.py

integrations/openclaw-plugin/openclaw.plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "orca",
33
"name": "Orca",
4-
"version": "1.1.4",
4+
"version": "1.1.5",
55
"description": "Runtime guardrails for OpenClaw workflows via the Orca CLI.",
66
"configSchema": {
77
"type": "object",

integrations/openclaw-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "orca-openclaw-plugin",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "OpenClaw plugin wrapper for Orca runtime guardrails.",
55
"type": "module",
66
"main": "dist/index.js",

integrations/opencode-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "orca-opencode-plugin",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "OpenCode plugin wrapper for Orca runtime guardrails.",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)