Skip to content

Commit de6dca7

Browse files
author
Laurent Guitton
committed
chore: bump version to 2.20.1
1 parent 4acb4c7 commit de6dca7

15 files changed

Lines changed: 30 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.20.1] - 2026-06-17
11+
1012
### Fixed
1113

1214
- **GitHub & Azure OAuth in the Linux AppImage** — sign-in failed in the released AppImage with `Failed to parse device-code response: EOF while parsing a value at line 1 column 0` (worked under `pnpm tauri dev`). The forge HTTP transport shells out to the system `curl`, which inherited the AppImage `AppRun`'s `LD_LIBRARY_PATH` pollution and loaded ABI-incompatible bundled libs, dying before the TLS request completed (empty body → JSON parse error). `hidden_cmd` now de-pollutes the child environment inside an AppImage (restore each `<VAR>_ORIG` saved by AppRun, else drop the override; no-op outside an AppImage), and the curl transport now adds `--show-error` and reports a non-zero curl exit as an explicit transport error instead of a misleading parse error. Reproduced and verified end-to-end on Linux via `scripts/repro-issue-48-appimage-curl.sh`. (#48)
@@ -1047,6 +1049,7 @@ Design-system foundations — the app header and every overlay now ride on a sha
10471049
[2.11.0]: https://github.com/devlint/GitWand/compare/v2.10.0...v2.11.0
10481050
[2.10.0]: https://github.com/devlint/GitWand/compare/v2.9.0...v2.10.0
10491051
[2.9.0]: https://github.com/devlint/GitWand/compare/v2.8.2...v2.9.0
1052+
[2.20.1]: https://github.com/devlint/GitWand/compare/v2.20.0...v2.20.1
10501053
[2.8.2]: https://github.com/devlint/GitWand/compare/v2.8.0...v2.8.2
10511054
[2.8.0]: https://github.com/devlint/GitWand/compare/v2.7.0...v2.8.0
10521055
[2.7.0]: https://github.com/devlint/GitWand/compare/v2.6.0...v2.7.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<p align="center">
2222
<img alt="License" src="https://img.shields.io/badge/license-MIT-8B5CF6">
2323
<img alt="TypeScript" src="https://img.shields.io/badge/TypeScript-100%25-3178C6">
24-
<img alt="Version" src="https://img.shields.io/badge/version-2.20.0-22c55e">
24+
<img alt="Version" src="https://img.shields.io/badge/version-2.20.1-22c55e">
2525
</p>
2626

2727
---

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitwand/desktop",
3-
"version": "2.20.0",
3+
"version": "2.20.1",
44
"private": true,
55
"description": "GitWand Desktop — lightweight Git client with smart conflict resolution (Tauri + Vue 3)",
66
"type": "module",

apps/desktop/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gitwand-desktop"
3-
version = "2.20.0"
3+
version = "2.20.1"
44
description = "GitWand Desktop — standalone merge conflict resolution"
55
authors = ["Laurent Guitton <lb.guitton@gmail.com>"]
66
license = "MIT"

apps/desktop/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
33
"productName": "GitWand",
4-
"version": "2.20.0",
4+
"version": "2.20.1",
55
"identifier": "com.gitwand.desktop",
66
"build": {
77
"frontendDist": "../dist",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitwand",
3-
"version": "2.20.0",
3+
"version": "2.20.1",
44
"private": true,
55
"description": "Git's magic wand — automatic conflict resolution and smart merge tools",
66
"author": "Laurent Guitton <lb.guitton@gmail.com>",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitwand/cli",
3-
"version": "2.20.0",
3+
"version": "2.20.1",
44
"description": "GitWand CLI — resolve Git conflicts from your terminal or CI pipeline",
55
"type": "module",
66
"main": "dist/index.js",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitwand/core",
3-
"version": "2.20.0",
3+
"version": "2.20.1",
44
"description": "GitWand core — automatic Git conflict resolution engine (powers @gitwand/cli, @gitwand/mcp, and the GitWand desktop app)",
55
"type": "module",
66
"main": "dist/index.js",

packages/mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitwand/mcp",
3-
"version": "2.20.0",
3+
"version": "2.20.1",
44
"mcpName": "io.github.devlint/gitwand",
55
"description": "GitWand MCP server — smart Git conflict resolution for AI agents (Claude, Cursor, Windsurf, Claude Code)",
66
"type": "module",

packages/mcp/server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
33
"name": "io.github.devlint/gitwand",
44
"description": "Auto-resolves Git merge conflicts so agents only touch the complex hunks.",
5-
"version": "2.20.0",
5+
"version": "2.20.1",
66
"repository": {
77
"url": "https://github.com/devlint/GitWand",
88
"source": "github"
@@ -11,7 +11,7 @@
1111
{
1212
"registryType": "npm",
1313
"identifier": "@gitwand/mcp",
14-
"version": "2.20.0",
14+
"version": "2.20.1",
1515
"transport": {
1616
"type": "stdio"
1717
}

0 commit comments

Comments
 (0)