From d8d77ac600beefff18dbac781574f46f75bfaae5 Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Sun, 24 Apr 2022 22:38:20 +0100 Subject: [PATCH] release 0.9.8 --- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- server/Cargo.lock | 6 +++--- server/logging/Cargo.toml | 2 +- server/logging_macro/Cargo.toml | 2 +- server/main/Cargo.toml | 2 +- 7 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d44521d..4556908 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to the "vscode-mc-shader" extension will be documented in th The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +## [0.9.8] + +### Fixed + +- NVIDIA diagnostics line offset off-by-one due to confusion with erroneous (non-proper) GLSL files resulting in both -1 and -2 offsets appearing to be valid when only the former is. +- Non-toplevel files being treated as toplevel files when they have .fsh/.vsh/etc and not imported into a valid toplevel file. +- Fix issue in the depth-first-search iterator when a file is imported twice into another file with a different include in between. + ## [0.9.7] ### Fixed diff --git a/package-lock.json b/package-lock.json index 8f8b1aa..0659dea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "vscode-mc-shader", - "version": "0.9.7", + "version": "0.9.8", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.9.7", + "version": "0.9.8", "hasInstallScript": true, "license": "MIT", "devDependencies": { diff --git a/package.json b/package.json index 7c3ef15..36dbb57 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-mc-shader", "displayName": "Minecraft GLSL Shaders", "description": "A Visual Studio Code extension for linting/etc Minecraft GLSL Shaders", - "version": "0.9.7", + "version": "0.9.8", "publisher": "Strum355", "author": "Noah Santschi-Cooney (Strum355)", "license": "MIT", diff --git a/server/Cargo.lock b/server/Cargo.lock index 5d97dab..6139526 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -656,7 +656,7 @@ dependencies = [ [[package]] name = "logging" -version = "0.9.7" +version = "0.9.8" dependencies = [ "lazy_static", "rand 0.8.5", @@ -668,7 +668,7 @@ dependencies = [ [[package]] name = "logging_macro" -version = "0.9.7" +version = "0.9.8" dependencies = [ "quote", "syn", @@ -703,7 +703,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" [[package]] name = "mcshader-lsp" -version = "0.9.7" +version = "0.9.8" dependencies = [ "anyhow", "fs_extra", diff --git a/server/logging/Cargo.toml b/server/logging/Cargo.toml index 7b94e66..3714c9e 100644 --- a/server/logging/Cargo.toml +++ b/server/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "logging" -version = "0.9.7" +version = "0.9.8" authors = ["Noah Santschi-Cooney "] edition = "2021" diff --git a/server/logging_macro/Cargo.toml b/server/logging_macro/Cargo.toml index e20d4ed..efce6d8 100644 --- a/server/logging_macro/Cargo.toml +++ b/server/logging_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "logging_macro" -version = "0.9.7" +version = "0.9.8" authors = ["Noah Santschi-Cooney "] edition = "2021" diff --git a/server/main/Cargo.toml b/server/main/Cargo.toml index 30ad346..824a69b 100644 --- a/server/main/Cargo.toml +++ b/server/main/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mcshader-lsp" -version = "0.9.7" +version = "0.9.8" authors = ["Noah Santschi-Cooney "] edition = "2021"