From 551da9dc3dbba50e6d9d6760597562516bc5961f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 14:13:10 +0000 Subject: [PATCH] chore(main): release 0.8.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- editors/vscode/package.json | 2 +- npm/glslint/package.json | 10 +++++----- 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 64f3cdd..02f17d9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.8.0" + ".": "0.8.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f647037..00b1632 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.8.1](https://github.com/johncarmack1984/glslint/compare/v0.8.0...v0.8.1) (2026-08-10) + + +### Bug Fixes + +* **vscode:** keep the language server binary version-matched to the extension ([#52](https://github.com/johncarmack1984/glslint/issues/52)) ([d81e54f](https://github.com/johncarmack1984/glslint/commit/d81e54fa213d25bb2d9ddca0e34edf08b560bee7)) + ## [0.8.0](https://github.com/johncarmack1984/glslint/compare/v0.7.0...v0.8.0) (2026-08-09) diff --git a/Cargo.lock b/Cargo.lock index c4e4792..0e3e8ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -181,7 +181,7 @@ dependencies = [ [[package]] name = "glslint" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "serde", diff --git a/Cargo.toml b/Cargo.toml index d903015..90940d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glslint" -version = "0.8.0" +version = "0.8.1" edition = "2024" license = "MIT OR Apache-2.0" description = "A GLSL checker and language server for WebGL shader toolkits (luma.gl/deck.gl, maplibre, ShaderToy) and any project" diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 1e80cfb..20c2e1e 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -2,7 +2,7 @@ "name": "glslint", "displayName": "glslint", "description": "GLSL diagnostics for WebGL toolkits (luma.gl/deck.gl, maplibre, ShaderToy) — an LSP client for the glslint binary.", - "version": "0.8.0", + "version": "0.8.1", "publisher": "johncarmack1984", "license": "MIT OR Apache-2.0", "icon": "icon.png", diff --git a/npm/glslint/package.json b/npm/glslint/package.json index 934d9a9..8964430 100644 --- a/npm/glslint/package.json +++ b/npm/glslint/package.json @@ -1,6 +1,6 @@ { "name": "@glslint/cli", - "version": "0.8.0", + "version": "0.8.1", "description": "A GLSL checker and language server for WebGL shader toolkits (luma.gl/deck.gl, maplibre, ShaderToy) and any project", "keywords": [ "glsl", @@ -38,9 +38,9 @@ "node": ">=18" }, "optionalDependencies": { - "@glslint/darwin-arm64": "0.8.0", - "@glslint/darwin-x64": "0.8.0", - "@glslint/linux-x64": "0.8.0", - "@glslint/win32-x64": "0.8.0" + "@glslint/darwin-arm64": "0.8.1", + "@glslint/darwin-x64": "0.8.1", + "@glslint/linux-x64": "0.8.1", + "@glslint/win32-x64": "0.8.1" } }