Skip to content

Commit 10bcdaf

Browse files
committed
chore: bump version to 0.4.2
1 parent 43a2771 commit 10bcdaf

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.1";
21+
break :v "0.4.2";
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.1",
12+
.version = "0.4.2",
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.1.tar.gz"
4+
url "https://github.com/fajarhide/omni/archive/refs/tags/v0.4.2.tar.gz"
55
sha256 "9b040c0e785bd210380bc90b65abd135ccb826c697afecb81617adbc3345cbd8"
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.1",
3+
"version": "0.4.2",
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
@@ -78,7 +78,7 @@
7878
<div class="hero-content">
7979
<div class="hero-badge">
8080
<span class="dot"></span>
81-
v0.4.1 — Now with Unified CLI
81+
v0.4.2 — Now with Unified CLI
8282
</div>
8383
<h1>
8484
<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.1 -p ../)
16+
(cd core && zig build -Doptimize=ReleaseFast -Dversion=0.4.2 -p ../)
1717

1818
echo -e "${CYAN}Step 2: Building WebAssembly Binary (Edge)...${NC}"
19-
(cd core && zig build wasm -Doptimize=ReleaseSmall -Dversion=0.4.1 -p ../)
19+
(cd core && zig build wasm -Doptimize=ReleaseSmall -Dversion=0.4.2 -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 logMetrics(inputLen: number, outputLen: number, ms: number) {
4545
const server = new Server(
4646
{
4747
name: "omni-server",
48-
version: "0.4.1",
48+
version: "0.4.2",
4949
},
5050
{
5151
capabilities: {

0 commit comments

Comments
 (0)