release 0.9.8

This commit is contained in:
Noah Santschi-Cooney 2022-04-24 22:38:20 +01:00
parent 941822c5c7
commit d8d77ac600
No known key found for this signature in database
GPG key ID: 3B22282472C8AE48
7 changed files with 17 additions and 9 deletions

View file

@ -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

4
package-lock.json generated
View file

@ -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": {

View file

@ -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",

6
server/Cargo.lock generated
View file

@ -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",

View file

@ -1,6 +1,6 @@
[package]
name = "logging"
version = "0.9.7"
version = "0.9.8"
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
edition = "2021"

View file

@ -1,6 +1,6 @@
[package]
name = "logging_macro"
version = "0.9.7"
version = "0.9.8"
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
edition = "2021"

View file

@ -1,6 +1,6 @@
[package]
name = "mcshader-lsp"
version = "0.9.7"
version = "0.9.8"
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
edition = "2021"