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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to aimux are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0] — pending (planned 2026-08-17)
## [0.3.0] - 2026-08-17

**Breaking release.** 196 commits since 0.2.1: observability primitives
(recording / replay / sessions / tracing), composite models, streaming
Expand Down
2 changes: 1 addition & 1 deletion bindings/flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: aimux
description: Unified LLM service layer for Flutter/Dart (Rust core, 325 providers, C ABI via dart:ffi)
version: 0.2.1
version: 0.3.0
homepage: https://github.com/arcships/aimux
repository: https://github.com/arcships/aimux
issue_tracker: https://github.com/arcships/aimux/issues
Expand Down
2 changes: 1 addition & 1 deletion bindings/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "ai.arcships"
version = "0.2.1"
version = "0.3.0"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion bindings/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "ai.arcships"
version = "0.2.1"
version = "0.3.0"

repositories {
mavenCentral()
Expand Down
8 changes: 4 additions & 4 deletions scripts/sync-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ console.log(' Node -> bindings/node/package.json');
"

# Python
sed -i -E "s/^version = .*/version = \"$VERSION\"/" bindings/python/pyproject.toml
sed -i'' -E "s/^version = .*/version = \"$VERSION\"/" bindings/python/pyproject.toml
echo " Python -> bindings/python/pyproject.toml"

# Flutter
sed -i -E "s/^version: .*/version: $VERSION/" bindings/flutter/pubspec.yaml
sed -i'' -E "s/^version: .*/version: $VERSION/" bindings/flutter/pubspec.yaml
echo " Flutter -> bindings/flutter/pubspec.yaml"

# Kotlin
sed -i -E "s/^version = .*/version = \"$VERSION\"/" bindings/kotlin/build.gradle.kts
sed -i'' -E "s/^version = .*/version = \"$VERSION\"/" bindings/kotlin/build.gradle.kts
echo " Kotlin -> bindings/kotlin/build.gradle.kts"

# Java
sed -i -E "s/^version = .*/version = \"$VERSION\"/" bindings/java/build.gradle.kts
sed -i'' -E "s/^version = .*/version = \"$VERSION\"/" bindings/java/build.gradle.kts
echo " Java -> bindings/java/build.gradle.kts"

echo "Done. Go is driven by the git tag — no change needed."
Loading