Skip to content

Commit 83eb64e

Browse files
committed
chore: bump version to 0.4.1
1 parent bffbf7f commit 83eb64e

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

core/build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub fn build(b: *std.Build) void {
1818
const optimize = b.standardOptimizeOption(.{});
1919
const version = b.option([]const u8, "version", "Project version string") orelse v: {
2020
// Fallback: try to read from build.zig.zon if b.version is not available or if we want to be safe
21-
break :v "0.4.0";
21+
break :v "0.4.1";
2222
};
2323

2424
const options = b.addOptions();

core/build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
.name = .core,
1010
// This is a [Semantic Version](https://semver.org/).
1111
// In a future version of Zig it will be used for package deduplication.
12-
.version = "0.4.0",
12+
.version = "0.4.1",
1313
// Together with name, this represents a globally unique package
1414
// identifier. This field is generated by the Zig toolchain when the
1515
// package is first created, and then *never changes*. This allows

omni.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Omni < Formula
22
desc "Semantic Distillation Engine for the Agentic AI"
33
homepage "https://github.com/fajarhide/omni"
4-
url "https://github.com/fajarhide/omni/archive/refs/tags/v0.4.0.tar.gz"
4+
url "https://github.com/fajarhide/omni/archive/refs/tags/v0.4.1.tar.gz"
55
sha256 "dd1d1fe4ac69effdd6d2ec02220c5f34812c099915a30975ae6496589391090d"
66
license "MIT"
77

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "omni-mcp",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"type": "module",
55
"description": "Next-gen Token Efficiency Interface (MCP)",
66
"main": "dist/index.js",

page/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<div class="hero-content">
4343
<div class="hero-badge">
4444
<span class="dot"></span>
45-
v0.4.0 — Now with Unified CLI
45+
v0.4.1 — Now with Unified CLI
4646
</div>
4747
<h1>
4848
<span class="reveal">The <span class="gradient-text">Semantic Core</span></span>

scripts/omni-deploy-edge.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ echo -e "${BLUE}🚢 OMNI Edge Deployment Preparer${NC}"
1313
echo "════════════════════════════════════════════════"
1414

1515
echo -e "${CYAN}Step 1: Building Native Core...${NC}"
16-
(cd core && zig build -Doptimize=ReleaseFast -Dversion=0.4.0 -p ../)
16+
(cd core && zig build -Doptimize=ReleaseFast -Dversion=0.4.1 -p ../)
1717

1818
echo -e "${CYAN}Step 2: Building WebAssembly Binary (Edge)...${NC}"
19-
(cd core && zig build wasm -Doptimize=ReleaseSmall -Dversion=0.4.0 -p ../)
19+
(cd core && zig build wasm -Doptimize=ReleaseSmall -Dversion=0.4.1 -p ../)
2020

2121
echo -e "${CYAN}Step 3: Building MCP Server...${NC}"
2222
npm run build

src/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function logTelemetry(inputLen: number, outputLen: number, ms: number) {
4545
const server = new Server(
4646
{
4747
name: "omni-server",
48-
version: "0.4.0",
48+
version: "0.4.1",
4949
},
5050
{
5151
capabilities: {

0 commit comments

Comments
 (0)