This commit is contained in:
Mathias Gesbert 2025-12-09 14:46:09 +01:00
parent fa15fc977b
commit 3aa54e9f05
9 changed files with 20 additions and 16 deletions

2
.vscode/launch.json vendored
View file

@ -1,5 +1,5 @@
{
"version": "0.1.0",
"version": "1.0.1",
"configurations": [
{
"name": "ACP Server",

View file

@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## v1.0.0
- Initial release
## v1.0.1
- Fix update notification

View file

@ -1,7 +1,7 @@
id = "mistral-vibe"
name = "Mistral Vibe"
description = "Lightning-fast AI agent that actually gets things done"
version = "1.0.0"
version = "1.0.1"
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.0/vibe-acp-darwin-aarch64-1.0.0.zip"
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-darwin-aarch64-1.0.1.zip"
cmd = "./vibe-acp"
[agent_servers.mistral-vibe-agent.targets.darwin-x86_64]
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.0/vibe-acp-darwin-x86_64-1.0.0.zip"
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-darwin-x86_64-1.0.1.zip"
cmd = "./vibe-acp"
# [agent_servers.mistral-vibe-agent.targets.linux-aarch64]
# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.0/vibe-acp-linux-aarch64-1.0.0.zip"
# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-linux-aarch64-1.0.1.zip"
# cmd = "./vibe-acp"
[agent_servers.mistral-vibe-agent.targets.linux-x86_64]
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.0/vibe-acp-linux-x86_64-1.0.0.zip"
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-linux-x86_64-1.0.1.zip"
cmd = "./vibe-acp"
# [agent_servers.mistral-vibe-agent.targets.windows-aarch64]
# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.0/vibe-acp-windows-aarch64-1.0.0.zip"
# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-windows-aarch64-1.0.1.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.0/vibe-acp-windows-x86_64-1.0.0.zip"
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-windows-x86_64-1.0.1.zip"
cmd = "./vibe-acp.exe"

View file

@ -1,6 +1,6 @@
[project]
name = "mistral-vibe"
version = "1.0.0"
version = "1.0.1"
description = "Minimal CLI coding agent by Mistral"
readme = "README.md"
requires-python = ">=3.12"

View file

@ -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="0.1.0"
name="@mistralai/mistral-vibe", title="Mistral Vibe", version="1.0.1"
)
vibe_setup_method = next(
(

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Before After
Before After

View file

@ -12,7 +12,7 @@ class SnapshotTestAppWithUpdate(BaseSnapshotTestApp):
config = default_config()
config.enable_update_checks = True
version_update_notifier = FakeVersionUpdateGateway(
update=VersionUpdate(latest_version="0.2.0")
update=VersionUpdate(latest_version="1000.2.0")
)
super().__init__(config=config, version_update_notifier=version_update_notifier)

2
uv.lock generated
View file

@ -661,7 +661,7 @@ wheels = [
[[package]]
name = "mistral-vibe"
version = "1.0.0"
version = "1.0.1"
source = { editable = "." }
dependencies = [
{ name = "agent-client-protocol" },

View file

@ -1,6 +1,6 @@
from __future__ import annotations
__all__ = ["__version__", "run_programmatic"]
__version__ = "0.1.0"
__version__ = "1.0.1"
from vibe.core.programmatic import run_programmatic