diff --git a/.vscode/launch.json b/.vscode/launch.json
index 5b32f7a..4939859 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -1,5 +1,5 @@
{
- "version": "1.0.2",
+ "version": "1.0.3",
"configurations": [
{
"name": "ACP Server",
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fcf57d5..debfd9e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,3 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## v1.0.2
- Fix setup flow for vibe-acp builds
+
+## v1.0.3
+
+- Add LICENCE symlink in distribution/zed for compatibility with zed extension release process
diff --git a/distribution/zed/LICENSE b/distribution/zed/LICENSE
new file mode 120000
index 0000000..30cff74
--- /dev/null
+++ b/distribution/zed/LICENSE
@@ -0,0 +1 @@
+../../LICENSE
\ No newline at end of file
diff --git a/distribution/zed/extension.toml b/distribution/zed/extension.toml
index 00fa438..2f51a25 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.2"
+version = "1.0.3"
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.2/vibe-acp-darwin-aarch64-1.0.2.zip"
+archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.3/vibe-acp-darwin-aarch64-1.0.3.zip"
cmd = "./vibe-acp"
[agent_servers.mistral-vibe-agent.targets.darwin-x86_64]
-archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-darwin-x86_64-1.0.2.zip"
+archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.3/vibe-acp-darwin-x86_64-1.0.3.zip"
cmd = "./vibe-acp"
# [agent_servers.mistral-vibe-agent.targets.linux-aarch64]
-# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-linux-aarch64-1.0.2.zip"
+# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.3/vibe-acp-linux-aarch64-1.0.3.zip"
# cmd = "./vibe-acp"
[agent_servers.mistral-vibe-agent.targets.linux-x86_64]
-archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-linux-x86_64-1.0.2.zip"
+archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.3/vibe-acp-linux-x86_64-1.0.3.zip"
cmd = "./vibe-acp"
# [agent_servers.mistral-vibe-agent.targets.windows-aarch64]
-# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-windows-aarch64-1.0.2.zip"
+# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.3/vibe-acp-windows-aarch64-1.0.3.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.2/vibe-acp-windows-x86_64-1.0.2.zip"
+archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.3/vibe-acp-windows-x86_64-1.0.3.zip"
cmd = "./vibe-acp.exe"
diff --git a/pyproject.toml b/pyproject.toml
index 4436275..8effb94 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "mistral-vibe"
-version = "1.0.2"
+version = "1.0.3"
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 9ed03fa..e51fef2 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.2"
+ name="@mistralai/mistral-vibe", title="Mistral Vibe", version="1.0.3"
)
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 efa95c4..0ff3b53 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.2 => 1000.2.0
+▌1.0.3 => 1000.2.0
▌Run "uv tool upgrade mistral-vibe" to update
▌
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
diff --git a/uv.lock b/uv.lock
index a0a6e66..7b13f56 100644
--- a/uv.lock
+++ b/uv.lock
@@ -661,7 +661,7 @@ wheels = [
[[package]]
name = "mistral-vibe"
-version = "1.0.2"
+version = "1.0.3"
source = { editable = "." }
dependencies = [
{ name = "agent-client-protocol" },
diff --git a/vibe/core/__init__.py b/vibe/core/__init__.py
index 772813e..035490b 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.2"
+__version__ = "1.0.3"
from vibe.core.programmatic import run_programmatic