Skip to content

Commit 386f327

Browse files
chore(release): stamp v0.1.4 [skip ci]
1 parent 1d4efac commit 386f327

7 files changed

Lines changed: 24 additions & 24 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<p>
88
<a href="https://github.com/kuberwastaken/claurst"><img src="https://img.shields.io/badge/Built_with-Rust-CE4D2B?style=for-the-badge&logo=rust&logoColor=white" alt="Built with Rust"></a>
9-
<a href="https://github.com/kuberwastaken/claurst"><img src="https://img.shields.io/badge/Version-0.1.3-2E8B57?style=for-the-badge" alt="Version 0.1.3"></a>
9+
<a href="https://github.com/kuberwastaken/claurst"><img src="https://img.shields.io/badge/Version-0.1.4-2E8B57?style=for-the-badge" alt="Version 0.1.4"></a>
1010
<a href="https://github.com/kuberwastaken/claurst/blob/main/LICENSE.md"><img src="https://img.shields.io/badge/License-GPL--3.0-blue?style=for-the-badge" alt="GPL-3.0 License"></a>
1111
</p>
1212

@@ -24,7 +24,7 @@ It's fast, it's memory-efficient, it's yours to run however you want, and there'
2424
---
2525

2626
> [!IMPORTANT]
27-
> **Claurst is now officially in Beta (v0.1.3).** The core agent, multi-provider routing, and TUI are stable enough for daily driving — expect rough edges around experimental features (flagged below). Bug reports and PRs welcome.
27+
> **Claurst is now officially in Beta (v0.1.4).** The core agent, multi-provider routing, and TUI are stable enough for daily driving — expect rough edges around experimental features (flagged below). Bug reports and PRs welcome.
2828
2929
> [!NOTE]
3030
> **Recent Updates:**

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Claurst is a high-performance Rust reimplementation of Claude Code — a terminal-native AI coding agent with streaming responses, 40+ built-in tools, 15+ LLM provider integrations, a full ratatui TUI, and an extensible plugin system.
88

9-
**Version:** 0.1.3 (Beta) · **License:** GPL-3.0 · [GitHub](https://github.com/Kuberwastaken/claurst)
9+
**Version:** 0.1.4 (Beta) · **License:** GPL-3.0 · [GitHub](https://github.com/Kuberwastaken/claurst)
1010

1111
</div>
1212

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ claurst --version
170170
A successful installation prints the version string, for example:
171171

172172
```
173-
claurst 0.1.3
173+
claurst 0.1.4
174174
```
175175

176176
To confirm the binary is the one you installed:

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claurst",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "Open-source, multi-provider terminal coding agent built in Rust",
55
"license": "GPL-3.0-only",
66
"repository": {

src-rust/Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ members = [
1616
]
1717

1818
[workspace.package]
19-
version = "0.1.3"
19+
version = "0.1.4"
2020
edition = "2021"
2121
authors = ["Claurst"]
2222
license = "GPL-3.0"

src-rust/crates/acp/registry-template/agent.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "claurst",
33
"name": "Claurst",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"description": "Open-source, multi-provider terminal coding agent built in Rust. Multi-provider routing (Anthropic, OpenAI, Google, Groq, Ollama, OpenAI-compatible, …), full MCP support, plugin system, Rustle companion, chat forking, memory consolidation. No telemetry.",
66
"repository": "https://github.com/kuberwastaken/claurst",
77
"website": "https://claurst.kuber.studio",
@@ -12,27 +12,27 @@
1212
"distribution": {
1313
"binary": {
1414
"darwin-aarch64": {
15-
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.3/claurst-macos-aarch64.tar.gz",
15+
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.4/claurst-macos-aarch64.tar.gz",
1616
"cmd": "./claurst",
1717
"args": ["acp"]
1818
},
1919
"darwin-x86_64": {
20-
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.3/claurst-macos-x86_64.tar.gz",
20+
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.4/claurst-macos-x86_64.tar.gz",
2121
"cmd": "./claurst",
2222
"args": ["acp"]
2323
},
2424
"linux-aarch64": {
25-
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.3/claurst-linux-aarch64.tar.gz",
25+
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.4/claurst-linux-aarch64.tar.gz",
2626
"cmd": "./claurst",
2727
"args": ["acp"]
2828
},
2929
"linux-x86_64": {
30-
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.3/claurst-linux-x86_64.tar.gz",
30+
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.4/claurst-linux-x86_64.tar.gz",
3131
"cmd": "./claurst",
3232
"args": ["acp"]
3333
},
3434
"windows-x86_64": {
35-
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.3/claurst-windows-x86_64.zip",
35+
"archive": "https://github.com/kuberwastaken/claurst/releases/download/v0.1.4/claurst-windows-x86_64.zip",
3636
"cmd": "./claurst.exe",
3737
"args": ["acp"]
3838
}

0 commit comments

Comments
 (0)