Skip to content

Commit f59ab06

Browse files
committed
Bump to 0.8.2
1 parent da9e9d5 commit f59ab06

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

shader-intrinsic-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
shader-sense = { version = "0.5.1", path = "../shader-sense" }
8+
shader-sense = { version = "0.5.2", path = "../shader-sense" }
99
regex = "1.10.6"
1010
scraper = "0.20.0"
1111
serde = { version = "1.0.208", features = ["derive"] }

shader-language-server/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [0.8.2] - 2025-08-03
11+
12+
### Fixed
13+
14+
- Fixed a crash when DXC fail to instantiate. Fallback to glslang for validation instead.
15+
- Fixed an issue with dxil dll loading on Linux as dxcompiler.so seems to load it from path while we create it from absolute path.
16+
1017
## [0.8.1] - 2025-08-03
1118

1219
### Fixed
@@ -298,7 +305,8 @@ Initial release of this extension
298305

299306

300307
<!-- Below are link for above changelog titles-->
301-
[unreleased]: https://github.com/antaalt/shader-sense/compare/v0.8.1...HEAD
308+
[unreleased]: https://github.com/antaalt/shader-sense/compare/v0.8.2...HEAD
309+
[0.8.1]: https://github.com/antaalt/shader-sense/compare/v0.8.1...v0.8.2
302310
[0.8.1]: https://github.com/antaalt/shader-sense/compare/v0.8.0...v0.8.1
303311
[0.8.0]: https://github.com/antaalt/shader-sense/compare/v0.7.0...v0.8.0
304312
[0.7.0]: https://github.com/antaalt/shader-sense/compare/v0.6.1...v0.7.0

shader-language-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Language server for HLSL / GLSL / WGSL shaders using LSP protocol
44
repository = "https://github.com/antaalt/shader-sense/tree/main/shader-language-server"
55
keywords = ["shader", "lsp", "hlsl", "glsl", "wgsl"]
66
categories = ["development-tools", "graphics"]
7-
version = "0.8.1"
7+
version = "0.8.2"
88
edition = "2021"
99
license-file = "../LICENSE"
1010

@@ -16,7 +16,7 @@ name = "shader-language-server"
1616
path = "src/main.rs"
1717

1818
[dependencies]
19-
shader-sense = { version = "0.5.1", path = "../shader-sense" }
19+
shader-sense = { version = "0.5.2", path = "../shader-sense" }
2020
regex = "1.10.4"
2121
serde = { version = "1.0.199", features = ["derive"] }
2222
serde_json = "1.0.116"

shader-sense-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ description = "Command line interface for shader validation and symbol inspectio
44
repository = "https://github.com/antaalt/shader-sense"
55
keywords = ["shader", "validate", "hlsl", "glsl", "wgsl"]
66
categories = ["development-tools", "graphics"]
7-
version = "0.1.1"
7+
version = "0.1.2"
88
edition = "2021"
99
license-file = "../LICENSE"
1010

1111
[dependencies]
1212
colored = "3.0.0"
13-
shader-sense = { version = "0.5.1", path = "../shader-sense" }
13+
shader-sense = { version = "0.5.2", path = "../shader-sense" }

shader-sense/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Library for runtime shader validation and symbol inspection"
44
repository = "https://github.com/antaalt/shader-sense"
55
keywords = ["shader", "validate", "hlsl", "glsl", "wgsl"]
66
categories = ["development-tools", "graphics"]
7-
version = "0.5.1"
7+
version = "0.5.2"
88
edition = "2021"
99
license-file = "../LICENSE"
1010
readme = "../README.md"

0 commit comments

Comments
 (0)