Skip to content

Commit 0c7ad4b

Browse files
BunsDevclaude
andcommitted
chore(release): stamp v0.0.17
Ships the issue #50 fix: welcome screen no longer flickers to "Daemon: offline" under daemon load. v0.0.16 was published to npm from a pre-fix HEAD; the only path forward is a version bump. Stamped by scripts/bump-version.py v0.0.17: - src-rust/Cargo.toml workspace.package.version - src-rust/Cargo.lock (12 claurst* entries) - npm/package.json - README.md (badge + Beta callout) - docs/index.md (Version line) - docs/installation.md (sample output) - src-rust/crates/acp/registry-template/agent.json (version + 5 URLs) Only code delta vs v0.0.16 HEAD is the DaemonReachability + welcome budget fix in f8a191d. No new features. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent f8a191d commit 0c7ad4b

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
@@ -2,7 +2,7 @@
22

33
**Coven Code** is an open-source, multi-provider agentic coding TUI built in Rust. It is maintained by [OpenCoven](https://opencoven.ai) as a GPL-3.0 fork of [Claurst](https://github.com/Kuberwastaken/claurst) by Kuber Mehta.
44

5-
> **Attribution:** Coven Code is derived from Claurst v0.0.16 under the GNU General Public License v3.0. The full license is in [`LICENSE.md`](LICENSE.md) and upstream attribution is in [`ATTRIBUTION.md`](ATTRIBUTION.md).
5+
> **Attribution:** Coven Code is derived from Claurst v0.0.17 under the GNU General Public License v3.0. The full license is in [`LICENSE.md`](LICENSE.md) and upstream attribution is in [`ATTRIBUTION.md`](ATTRIBUTION.md).
66
77
---
88

@@ -16,7 +16,7 @@ Multi-provider terminal coding agent with a rich ratatui TUI: chat forking, memo
1616

1717
## Status
1818

19-
> **Beta (v0.0.16).** Core agent, multi-provider routing, and TUI are stable for daily use. Experimental features are flagged below.
19+
> **Beta (v0.0.17).** Core agent, multi-provider routing, and TUI are stable for daily use. Experimental features are flagged below.
2020
2121
Recent highlights:
2222
- **/share** — share sessions via unlisted GitHub Gists `[EXPERIMENTAL]`

docs/index.md

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

77
Coven Code 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.0.16 (Beta) · **License:** GPL-3.0 · [GitHub](https://github.com/OpenCoven/coven-code)
9+
**Version:** 0.0.17 (Beta) · **License:** GPL-3.0 · [GitHub](https://github.com/OpenCoven/coven-code)
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 @@ coven-code --version
170170
A successful installation prints the version string, for example:
171171

172172
```
173-
coven-code 0.0.16
173+
coven-code 0.0.17
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": "@opencoven/coven-code",
3-
"version": "0.0.16",
3+
"version": "0.0.17",
44
"description": "Open-source, multi-provider agentic coding TUI for the terminal \u2014 OpenCoven fork of Claurst",
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.0.16"
19+
version = "0.0.17"
2020
edition = "2021"
2121
authors = ["OpenCoven (based on Claurst by Kuber Mehta)"]
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": "coven-code",
33
"name": "Coven Code",
4-
"version": "0.0.16",
4+
"version": "0.0.17",
55
"description": "Open-source, multi-provider agentic coding TUI built in Rust (OpenCoven fork of Coven Code). Multi-provider routing (Anthropic, OpenAI, Google, Groq, Ollama, OpenAI-compatible, \u2026), full MCP support, plugin system, companion mascot, chat forking, memory consolidation. No telemetry.",
66
"repository": "https://github.com/OpenCoven/coven-code",
77
"website": "https://opencoven.ai",
@@ -18,35 +18,35 @@
1818
"distribution": {
1919
"binary": {
2020
"darwin-aarch64": {
21-
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.16/coven-code-macos-aarch64.tar.gz",
21+
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.17/coven-code-macos-aarch64.tar.gz",
2222
"cmd": "./coven-code",
2323
"args": [
2424
"acp"
2525
]
2626
},
2727
"darwin-x86_64": {
28-
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.16/coven-code-macos-x86_64.tar.gz",
28+
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.17/coven-code-macos-x86_64.tar.gz",
2929
"cmd": "./coven-code",
3030
"args": [
3131
"acp"
3232
]
3333
},
3434
"linux-aarch64": {
35-
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.16/coven-code-linux-aarch64.tar.gz",
35+
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.17/coven-code-linux-aarch64.tar.gz",
3636
"cmd": "./coven-code",
3737
"args": [
3838
"acp"
3939
]
4040
},
4141
"linux-x86_64": {
42-
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.16/coven-code-linux-x86_64.tar.gz",
42+
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.17/coven-code-linux-x86_64.tar.gz",
4343
"cmd": "./coven-code",
4444
"args": [
4545
"acp"
4646
]
4747
},
4848
"windows-x86_64": {
49-
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.16/coven-code-windows-x86_64.zip",
49+
"archive": "https://github.com/OpenCoven/coven-code/releases/download/v0.0.17/coven-code-windows-x86_64.zip",
5050
"cmd": "./coven-code.exe",
5151
"args": [
5252
"acp"

0 commit comments

Comments
 (0)