Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: Apache-2.0

[tool.bumpversion]
current_version = "0.26.4"
current_version = "0.26.5"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
commit = true
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.26.5] - 2026-07-29

### Fixed
- **Core Baseline Alignment**: Realigned pinned Zenzic Core baseline to `0.26.5` to bypass the dirty `0.26.4` PyPI release.

## [0.26.4] - 2026-07-29

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Zenzic is structured across three independent, dedicated repositories:

- **Thin Client Sovereignty**: `zenzic-vscode` contains **zero** AST parsing, regex checks, or link validation rules. All analysis logic resides in Zenzic Core (`zenzic lsp`).
- **Protocol Parity**: The extension communicates via standard Language Server Protocol (LSP) over stdio.
- **Minimum Core Baseline**: Currently pinned to **Zenzic Core `v0.26.4`** (`MIN_CORE_VERSION = '0.26.4'` in `src/extension.ts`).
- **Minimum Core Baseline**: Currently pinned to **Zenzic Core `v0.26.5`** (`MIN_CORE_VERSION = '0.26.5'` in `src/extension.ts`).

---

Expand All @@ -51,7 +51,7 @@ To maintain security, architectural integrity, and legal compliance, all contrib
| **npm** | required | Package manager |
| **just** | required | Task runner — `cargo install just` or via OS package manager |
| **reuse** | required | SPDX license auditor (`uv tool install reuse`) |
| **Zenzic Core** | ≥ 0.26.4 | Core engine (`uv tool install zenzic`) |
| **Zenzic Core** | ≥ 0.26.5 | Core engine (`uv tool install zenzic`) |

---

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ To guarantee sub-50ms performance, Zenzic operates with a strict separation of c

## Requirements

This extension requires **Zenzic Core v0.26.4 or higher**.
This extension requires **Zenzic Core v0.26.5 or higher**.

We recommend installing or updating the global binary via `uv`:

Expand Down Expand Up @@ -101,12 +101,12 @@ The extension contributes the following commands to the Command Palette:

### Zenzic: Outdated Core

- **Cause**: The executable resolved by the extension is older than the minimum required Core version (`v0.26.4`).
- **Cause**: The executable resolved by the extension is older than the minimum required Core version (`v0.26.5`).
- **Remediation**: Upgrade your global binary:
```bash
uv tool install --force zenzic
```
Or point `zenzic.executablePath` in `settings.json` to a virtual environment containing Core `v0.26.4` or higher.
Or point `zenzic.executablePath` in `settings.json` to a virtual environment containing Core `v0.26.5` or higher.


### Zenzic: Not Found (ENOENT)
Expand Down
8 changes: 4 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

| Field | Value |
| :--- | :--- |
| **Extension Version** | 0.26.4 |
| **Pinned Core** | `zenzic>=0.26.4` |
| **Extension Version** | 0.26.5 |
| **Pinned Core** | `zenzic>=0.26.5` |
| **Date** | 2026-07-11 |

## 1. Pre-Flight Checklist
Expand Down Expand Up @@ -49,8 +49,8 @@ git checkout main
git pull origin main

# 3. Create the immutable signed tag pointing to the HEAD of origin/main
git tag -s -m "Release v0.26.4" v0.26.4
git push origin v0.26.4
git tag -s -m "Release v0.26.5" v0.26.5
git push origin v0.26.5
```

## 4. Distribute (Automated)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "zenzic-vscode",
"displayName": "Zenzic",
"description": "Deterministic Document Integrity Engine and SAST for Markdown/MDX graphs.",
"version": "0.26.4",
"version": "0.26.5",
"publisher": "pythonwoods",
"engines": {
"vscode": "^1.125.0"
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let dqsStatusBarItem: vscode.StatusBarItem | undefined;
// A2 fix: guard flag prevents concurrent restart calls.
let restarting = false;

const MIN_CORE_VERSION = '0.26.4';
const MIN_CORE_VERSION = '0.26.5';

/**
* Expand supported user-facing path variables in zenzic.executablePath.
Expand Down
Loading