diff --git a/CHANGELOG.md b/CHANGELOG.md index 4556908..d7e089d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ 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.9] + +### Added + +- Support for mod world folders, outside the standard world{-1,0,1}. +- Support for compute shader files ending in \_a to \_z. + +### Fixed + +- Crash when running with eglot as LSP client. +- Extension icon client not displaying (encoding issue). + ## [0.9.8] ### Fixed diff --git a/package.json b/package.json index 36312f3..0ecfe79 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.8", + "version": "0.9.9", "publisher": "Strum355", "author": "Noah Santschi-Cooney (Strum355)", "license": "MIT", diff --git a/server/Cargo.lock b/server/Cargo.lock index 6139526..05c839a 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -656,7 +656,7 @@ dependencies = [ [[package]] name = "logging" -version = "0.9.8" +version = "0.9.9" dependencies = [ "lazy_static", "rand 0.8.5", @@ -668,7 +668,7 @@ dependencies = [ [[package]] name = "logging_macro" -version = "0.9.8" +version = "0.9.9" dependencies = [ "quote", "syn", @@ -703,7 +703,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" [[package]] name = "mcshader-lsp" -version = "0.9.8" +version = "0.9.9" dependencies = [ "anyhow", "fs_extra", diff --git a/server/logging/Cargo.toml b/server/logging/Cargo.toml index 3714c9e..2abdf7e 100644 --- a/server/logging/Cargo.toml +++ b/server/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "logging" -version = "0.9.8" +version = "0.9.9" authors = ["Noah Santschi-Cooney "] edition = "2021" diff --git a/server/logging_macro/Cargo.toml b/server/logging_macro/Cargo.toml index efce6d8..f1e6957 100644 --- a/server/logging_macro/Cargo.toml +++ b/server/logging_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "logging_macro" -version = "0.9.8" +version = "0.9.9" authors = ["Noah Santschi-Cooney "] edition = "2021" diff --git a/server/main/Cargo.toml b/server/main/Cargo.toml index 824a69b..3aa68c2 100644 --- a/server/main/Cargo.toml +++ b/server/main/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mcshader-lsp" -version = "0.9.8" +version = "0.9.9" authors = ["Noah Santschi-Cooney "] edition = "2021"