Skip to content

Releases: Lians-ai/Lians

v0.3.2

Choose a tag to compare

@github-actions github-actions released this 02 Jul 01:03
Lians v0.3.2 - cross-language + MCP fixes (fact_history/list_conflict…

v0.3.1

Choose a tag to compare

@github-actions github-actions released this 02 Jul 00:06
Lians v0.3.1 - SDK republish (fixes broken 0.3.0 import) + limit-test…

v0.3.0

Choose a tag to compare

@github-actions github-actions released this 30 Jun 15:33
ca37c73
Unify cross-language release + improve install/access (#21)

Fixes a release trap and makes getting started one page for every language.

Release (the bug): RELEASING.md claimed a single `vX.Y.Z` tag ships all five SDKs,
but the PyPI/npm publish workflows only triggered on `lians-v*` / `lians-ts-v*`, so
`v0.3.0` would have shipped Java/C/Go and SILENTLY skipped Python and npm.
- publish-lian.yml + publish-lian-npm.yml now also trigger on `v*` (old tags kept
  for back-compat). One tag now genuinely releases all five.
- PyPI publish gains skip-existing so re-running a release tag is a no-op.

Version consistency (lock-step 0.3.0):
- C: CMakeLists project(... VERSION 0.3.0 ...).
- Go: new version.go exposing `Version` const at runtime.
- README SDK table: Java 0.2.0 → 0.3.0; "All four" → "All five".
- RELEASING.md version-locations updated for C CMake + Go version.go.

Ease of access:
- New docs/install.md — one-page install matrix + 30-second hello for the server
  and all five languages, linked from the README header and SDK section.
- New TypeScript SDK README (was the only SDK without one).

Co-authored-by: etanbuns <ethan.beirne@aol.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>

v0.2.0

Choose a tag to compare

@ebeirne ebeirne released this 27 Jun 05:19

What's new

Free tier & cloud

  • Cloud API available at https://api.lians.dev — free tier includes 10K memories and 1K recalls/month, no credit card required
  • Added pricing documentation: docs/pricing-tiers.md and docs/billing.md (Clerk + Stripe integration guide)

Packages

  • lians-sdk (PyPI) 0.2.0 — full server SDK with MCP, LangChain, LangGraph, CrewAI, OpenAI Agents, AutoGen integrations
  • @ebeirne/lians (npm) 0.2.0 — TypeScript/Node SDK
  • lians (PyPI) 0.2.0 — thin HTTP client
  • MCP Registry io.github.ebeirne/lians 0.2.0 — native tool in Claude Desktop, Cursor, Windsurf

Fixes

  • Corrected all package repository URLs to github.com/Lians-ai/Lians

Install

```bash
pip install lians-sdk # Python (full SDK)
pip install lians-sdk[mcp] # + MCP server
pip install lians-sdk[local] # + local SQLite mode (zero setup)
npm install @ebeirne/lians # TypeScript / Node
```

Self-host

```bash
git clone https://github.com/Lians-ai/Lians.git && cd Lians/agentmem
cp .env.demo .env
docker compose up --build -d
```