Skip to content

Commit a239f13

Browse files
committed
chore: bump version to 0.4.0
1 parent d7916f7 commit a239f13

10 files changed

Lines changed: 12 additions & 12 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.3.9";
21+
break :v "0.4.0";
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.3.9",
12+
.version = "0.4.0",
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.3.9.tar.gz"
4+
url "https://github.com/fajarhide/omni/archive/refs/tags/v0.4.0.tar.gz"
55
sha256 "c815ced2dc31ae6eb12d14610335385f58e6e6286bba9243bcc0bb9b3d1cccb3"
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.3.9",
3+
"version": "0.4.0",
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.3.9 — Now with Unified CLI
45+
v0.4.0 — 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.3.9 -p ../)
16+
(cd core && zig build -Doptimize=ReleaseFast -Dversion=0.4.0 -p ../)
1717

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

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

scripts/omni-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ sed -i '' "/name: \"omni-server\"/,/version: \".*\"/ s/version: \".*\"/version:
3737
sed -i '' "s|-Dversion=[0-9.]*|-Dversion=$VERSION|g" scripts/omni-deploy-edge.sh
3838

3939
# Documentation
40-
sed -i '' "s|v[0-9.]* — Now with Unified CLI|v$VERSION — Now with Unified CLI|g" docs/index.html
40+
sed -i '' "s|v[0-9.]* — Now with Unified CLI|v$VERSION — Now with Unified CLI|g" page/index.html
4141

4242
echo "📦 Synchronized all version strings to $VERSION"
4343

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.3.9",
48+
version: "0.4.0",
4949
},
5050
{
5151
capabilities: {

0 commit comments

Comments
 (0)