Skip to content

Commit 25d05fb

Browse files
author
Ruslan Magana Vsevolodovna
committed
0.2.5
Release 0.2.5
1 parent 29205a9 commit 25d05fb

9 files changed

Lines changed: 18 additions & 18 deletions

File tree

README.md

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

77
**Your AI coding companion. Ask. Plan. Code. Ship.**
88

9-
[![Version](https://img.shields.io/badge/version-0.1.5-D95C3D?style=flat-square&labelColor=1C1C1F)](https://github.com/ruslanmv/gitpilot)
9+
[![Version](https://img.shields.io/badge/version-0.2.5-D95C3D?style=flat-square&labelColor=1C1C1F)](https://github.com/ruslanmv/gitpilot)
1010
[![Python 3.11+](https://img.shields.io/badge/python-3.11+-D95C3D?style=flat-square&labelColor=1C1C1F)](https://www.python.org/)
1111
[![License: MIT](https://img.shields.io/badge/license-MIT-D95C3D?style=flat-square&labelColor=1C1C1F)](LICENSE)
1212
[![VS Code](https://img.shields.io/badge/VS%20Code-Extension-D95C3D?style=flat-square&labelColor=1C1C1F)](https://marketplace.visualstudio.com/)

extensions/vscode/EXTENSION_DOCS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GitPilot VS Code Extension — Full Documentation
22

3-
> Version 0.1.5
3+
> Version 0.2.5
44
55
## Table of Contents
66

@@ -43,13 +43,13 @@ GitPilot has **three components that must be version-aligned**: the VS Code exte
4343

4444
| VS Code extension | Python backend (`gitcopilot`) | VS Code engine | Python |
4545
|---|---|---|---|
46-
| **0.1.x** | `>=0.1.5,<0.2.0` | `>=1.110.0` | `3.11` or `3.12` |
46+
| **0.1.x** | `>=0.2.5,<0.3.0` | `>=1.110.0` | `3.11` or `3.12` |
4747

4848
**Install both at compatible versions:**
4949

5050
```bash
5151
# Backend (PyPI package is named "gitcopilot", command is "gitpilot")
52-
pip install "gitcopilot>=0.1.5,<0.2.0"
52+
pip install "gitcopilot>=0.2.5,<0.3.0"
5353
gitpilot serve # starts backend on http://127.0.0.1:8000
5454

5555
# Extension
@@ -80,7 +80,7 @@ code --install-extension ruslanmv.gitpilot-vscode
8080
```bash
8181
cd extensions/vscode
8282
make package
83-
code --install-extension gitpilot-vscode-0.1.5.vsix
83+
code --install-extension gitpilot-vscode-0.2.5.vsix
8484
```
8585

8686
### From Source (for developers)
@@ -380,4 +380,4 @@ Open an issue at [github.com/ruslanmv/gitpilot/issues](https://github.com/ruslan
380380

381381
---
382382

383-
*GitPilot v0.1.5 | MIT License | [github.com/ruslanmv/gitpilot](https://github.com/ruslanmv/gitpilot)*
383+
*GitPilot v0.2.5 | MIT License | [github.com/ruslanmv/gitpilot](https://github.com/ruslanmv/gitpilot)*

extensions/vscode/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ gitpilot serve
135135
The PyPI package is **`gitcopilot`** (the CLI is `gitpilot`). Requires Python 3.11 or 3.12.
136136

137137
**"Version mismatch"**
138-
This VS Code extension (v0.1.x) requires **GitPilot backend v0.1.x** (`gitcopilot>=0.1.5,<0.2.0`).
139-
Upgrade both together: `pip install --upgrade 'gitcopilot>=0.1.5,<0.2.0'`.
138+
This VS Code extension (v0.1.x) requires **GitPilot backend v0.1.x** (`gitcopilot>=0.2.5,<0.3.0`).
139+
Upgrade both together: `pip install --upgrade 'gitcopilot>=0.2.5,<0.3.0'`.
140140

141141
**Extension not loading?**
142142
Open the Output panel (`Ctrl+Shift+U`) and select "GitPilot" from the dropdown to see logs.
@@ -151,4 +151,4 @@ Open the Output panel (`Ctrl+Shift+U`) and select "GitPilot" from the dropdown t
151151

152152
---
153153

154-
**Made by [Ruslan Magana Vsevolodovna](https://github.com/ruslanmv)** | MIT License | v0.1.5
154+
**Made by [Ruslan Magana Vsevolodovna](https://github.com/ruslanmv)** | MIT License | v0.2.5

extensions/vscode/package-lock.json

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

extensions/vscode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gitpilot-vscode",
33
"displayName": "GitPilot Workspace — AI Repo Copilot",
44
"description": "Right-side Copilot workspace for VS Code with plan, files in scope, changes, chat, and apply/revert actions.",
5-
"version": "0.1.5",
5+
"version": "0.2.5",
66
"preview": true,
77
"publisher": "ruslanmv",
88
"license": "MIT",
@@ -623,7 +623,7 @@
623623
{
624624
"id": "startServer",
625625
"title": "Start the GitPilot Server",
626-
"description": "Install the GitPilot backend (PyPI: `gitcopilot`) and start the API server. Requires Python 3.11 or 3.12.\n\n```bash\npip install 'gitcopilot>=0.1.5,<0.2.0'\ngitpilot serve\n```\n\nThe package on PyPI is **gitcopilot**; the command is **gitpilot**.\n\n[Open Terminal](command:workbench.action.terminal.new)",
626+
"description": "Install the GitPilot backend (PyPI: `gitcopilot`) and start the API server. Requires Python 3.11 or 3.12.\n\n```bash\npip install 'gitcopilot>=0.2.5,<0.3.0'\ngitpilot serve\n```\n\nThe package on PyPI is **gitcopilot**; the command is **gitpilot**.\n\n[Open Terminal](command:workbench.action.terminal.new)",
627627
"media": {
628628
"markdown": ""
629629
}

frontend/components/AboutModal.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { apiUrl, safeFetchJSON } from "../utils/api.js";
1717
*/
1818

1919
const FRONTEND_VERSION =
20-
typeof __APP_VERSION__ !== "undefined" ? __APP_VERSION__ : "0.1.5";
20+
typeof __APP_VERSION__ !== "undefined" ? __APP_VERSION__ : "0.2.5";
2121

2222
export default function AboutModal({ isOpen, onClose }) {
2323
const [backendVersion, setBackendVersion] = useState(null);

frontend/package-lock.json

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

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitpilot-frontend",
3-
"version": "0.1.5",
3+
"version": "0.2.5",
44
"private": true,
55
"scripts": {
66
"dev": "vite --host",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
# PyPI project name – MUST match what you configured in PyPI Trusted Publishers
77
name = "gitcopilot"
8-
version = "0.1.5"
8+
version = "0.2.5"
99
description = "Production-ready agentic AI assistant for GitHub repositories with multi-LLM support and visual workflow insights"
1010
requires-python = ">=3.11,<3.13"
1111
readme = "README.md"

0 commit comments

Comments
 (0)