From bcbfd93f3796c0143c952de3803ee8831632a6a9 Mon Sep 17 00:00:00 2001
From: Michel Thomazo <51709227+michelTho@users.noreply.github.com>
Date: Tue, 9 Dec 2025 16:17:51 +0100
Subject: [PATCH] v1.0.2
---
.vscode/launch.json | 2 +-
CHANGELOG.md | 4 ++++
distribution/zed/extension.toml | 14 +++++++-------
pyproject.toml | 2 +-
tests/acp/test_acp.py | 2 +-
..._snapshot_shows_release_update_notification.svg | 2 +-
uv.lock | 2 +-
vibe-acp.spec | 2 ++
vibe/core/__init__.py | 2 +-
9 files changed, 19 insertions(+), 13 deletions(-)
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 8df4b9d..5b32f7a 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -1,5 +1,5 @@
{
- "version": "1.0.1",
+ "version": "1.0.2",
"configurations": [
{
"name": "ACP Server",
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dc062b9..fcf57d5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,3 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## v1.0.1
- Fix update notification
+
+## v1.0.2
+
+- Fix setup flow for vibe-acp builds
diff --git a/distribution/zed/extension.toml b/distribution/zed/extension.toml
index bdb7e00..00fa438 100644
--- a/distribution/zed/extension.toml
+++ b/distribution/zed/extension.toml
@@ -1,7 +1,7 @@
id = "mistral-vibe"
name = "Mistral Vibe"
description = "Lightning-fast AI agent that actually gets things done"
-version = "1.0.1"
+version = "1.0.2"
schema_version = 1
authors = ["Mistral AI"]
repository = "https://github.com/mistralai/mistral-vibe"
@@ -11,25 +11,25 @@ name = "Mistral Vibe"
icon = "./icons/mistral_vibe.svg"
[agent_servers.mistral-vibe-agent.targets.darwin-aarch64]
-archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-darwin-aarch64-1.0.1.zip"
+archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-darwin-aarch64-1.0.2.zip"
cmd = "./vibe-acp"
[agent_servers.mistral-vibe-agent.targets.darwin-x86_64]
-archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-darwin-x86_64-1.0.1.zip"
+archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-darwin-x86_64-1.0.2.zip"
cmd = "./vibe-acp"
# [agent_servers.mistral-vibe-agent.targets.linux-aarch64]
-# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-linux-aarch64-1.0.1.zip"
+# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-linux-aarch64-1.0.2.zip"
# cmd = "./vibe-acp"
[agent_servers.mistral-vibe-agent.targets.linux-x86_64]
-archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-linux-x86_64-1.0.1.zip"
+archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-linux-x86_64-1.0.2.zip"
cmd = "./vibe-acp"
# [agent_servers.mistral-vibe-agent.targets.windows-aarch64]
-# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-windows-aarch64-1.0.1.zip"
+# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-windows-aarch64-1.0.2.zip"
# cmd = "./vibe-acp.exe"
[agent_servers.mistral-vibe-agent.targets.windows-x86_64]
-archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-windows-x86_64-1.0.1.zip"
+archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-windows-x86_64-1.0.2.zip"
cmd = "./vibe-acp.exe"
diff --git a/pyproject.toml b/pyproject.toml
index f837445..4436275 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "mistral-vibe"
-version = "1.0.1"
+version = "1.0.2"
description = "Minimal CLI coding agent by Mistral"
readme = "README.md"
requires-python = ">=3.12"
diff --git a/tests/acp/test_acp.py b/tests/acp/test_acp.py
index 9ae3fbf..9ed03fa 100644
--- a/tests/acp/test_acp.py
+++ b/tests/acp/test_acp.py
@@ -351,7 +351,7 @@ class TestInitialization:
mcpCapabilities=McpCapabilities(http=False, sse=False),
)
assert response.result.agentInfo == Implementation(
- name="@mistralai/mistral-vibe", title="Mistral Vibe", version="1.0.1"
+ name="@mistralai/mistral-vibe", title="Mistral Vibe", version="1.0.2"
)
vibe_setup_method = next(
(
diff --git a/tests/snapshots/__snapshots__/test_ui_snapshot_release_update_notification/test_snapshot_shows_release_update_notification.svg b/tests/snapshots/__snapshots__/test_ui_snapshot_release_update_notification/test_snapshot_shows_release_update_notification.svg
index 6092b18..efa95c4 100644
--- a/tests/snapshots/__snapshots__/test_ui_snapshot_release_update_notification/test_snapshot_shows_release_update_notification.svg
+++ b/tests/snapshots/__snapshots__/test_ui_snapshot_release_update_notification/test_snapshot_shows_release_update_notification.svg
@@ -191,7 +191,7 @@
▌
▌Update available
-▌1.0.1 => 1000.2.0
+▌1.0.2 => 1000.2.0
▌Run "uv tool upgrade mistral-vibe" to update
▌
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
diff --git a/uv.lock b/uv.lock
index cd1ff23..a0a6e66 100644
--- a/uv.lock
+++ b/uv.lock
@@ -661,7 +661,7 @@ wheels = [
[[package]]
name = "mistral-vibe"
-version = "1.0.1"
+version = "1.0.2"
source = { editable = "." }
dependencies = [
{ name = "agent-client-protocol" },
diff --git a/vibe-acp.spec b/vibe-acp.spec
index 9118f81..95c755d 100644
--- a/vibe-acp.spec
+++ b/vibe-acp.spec
@@ -9,6 +9,8 @@ a = Analysis(
# By default, pyinstaller doesn't include the .md files
('vibe/core/prompts/*.md', 'vibe/core/prompts'),
('vibe/core/tools/builtins/prompts/*.md', 'vibe/core/tools/builtins/prompts'),
+ # We also need to add all setup files
+ ('vibe/setup/*', 'vibe/setup'),
# This is necessary because tools are dynamically called in vibe, meaning there is no static reference to those files
('vibe/core/tools/builtins/*.py', 'vibe/core/tools/builtins'),
('vibe/acp/tools/builtins/*.py', 'vibe/acp/tools/builtins'),
diff --git a/vibe/core/__init__.py b/vibe/core/__init__.py
index 74cbe51..772813e 100644
--- a/vibe/core/__init__.py
+++ b/vibe/core/__init__.py
@@ -1,6 +1,6 @@
from __future__ import annotations
__all__ = ["__version__", "run_programmatic"]
-__version__ = "1.0.1"
+__version__ = "1.0.2"
from vibe.core.programmatic import run_programmatic