Skip to content
Open
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.4"
".": "0.2.0"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.2.0](https://github.com/7xuanlu/origin/compare/v0.1.4...v0.2.0) (2026-04-28)


### Features

* Tauri auto-updater + pnpm update-all + UX polish ([#30](https://github.com/7xuanlu/origin/issues/30)) ([d898d6b](https://github.com/7xuanlu/origin/commit/d898d6b901ee85c2adbb7d31dbc4624dd2f016a2))


### Bug Fixes

* **ci:** use RELEASE_TOKEN for version-sync push in release-please ([#24](https://github.com/7xuanlu/origin/issues/24)) ([585b7b0](https://github.com/7xuanlu/origin/commit/585b7b02549ce4b3aeaf9f30bb62d0e3d4f72dd0))
* eval module restructure + Batch API integration ([#27](https://github.com/7xuanlu/origin/issues/27)) ([2ca12c1](https://github.com/7xuanlu/origin/commit/2ca12c1d10a2880bcf8056a7afd3d9b8fcefdc6e))
* **eval:** default enrichment to on-device, drop dead token_efficiency.rs ([b23f0bd](https://github.com/7xuanlu/origin/commit/b23f0bda7fbebeffde5b4a49af92e0a30ba4cd17))
* full-pipeline eval + source overlap concept gate + 3 production bugs ([#29](https://github.com/7xuanlu/origin/issues/29)) ([e8923b7](https://github.com/7xuanlu/origin/commit/e8923b720750de434e257378f829ddcc0d16bf79))
* **hooks:** pre-push skips clippy + tests + coverage on docs-only changes ([#26](https://github.com/7xuanlu/origin/issues/26)) ([e3c0124](https://github.com/7xuanlu/origin/commit/e3c0124831ffd446121c942bb37dc40a275cc480))

## [0.1.4](https://github.com/7xuanlu/origin/compare/v0.1.3...v0.1.4) (2026-04-26)


Expand Down
2 changes: 1 addition & 1 deletion app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "origin"
version = "0.1.4" # x-release-please-version
version = "0.2.0" # x-release-please-version
edition = "2021"
license = "AGPL-3.0-only"
default-run = "origin"
Expand Down
2 changes: 1 addition & 1 deletion app/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/nicegui/nicegui/tauri/tauri-v2-schema.json",
"productName": "Origin",
"version": "0.1.4",
"version": "0.2.0",
"identifier": "com.origin.desktop",
"build": {
"frontendDist": "../dist",
Expand Down
2 changes: 1 addition & 1 deletion crates/origin-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "origin-core"
version = "0.1.4" # x-release-please-version
version = "0.2.0" # x-release-please-version
edition.workspace = true
license = "Apache-2.0"
description = "Core business logic for Origin — memory storage, retrieval, and processing"
Expand Down
2 changes: 1 addition & 1 deletion crates/origin-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "origin-server"
version = "0.1.4" # x-release-please-version
version = "0.2.0" # x-release-please-version
edition.workspace = true
license = "Apache-2.0"
description = "Headless daemon for Origin — HTTP/MCP server without Tauri"
Expand Down
2 changes: 1 addition & 1 deletion crates/origin-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "origin-types"
version = "0.1.4" # x-release-please-version
version = "0.2.0" # x-release-please-version
edition = "2021"
license = "Apache-2.0"
description = "Shared wire-format types for Origin — the personal agent memory system."
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "origin",
"private": true,
"version": "0.1.4",
"version": "0.2.0",
"type": "module",
"license": "AGPL-3.0-only",
"packageManager": "pnpm@10.28.2",
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.4
0.2.0
Loading