diff --git a/CHANGELOG.md b/CHANGELOG.md index dd59254..9521dd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Release Notes +## [0.10.9] + +### Fixed + +- Fixed out of range error when doing semantic analysis. +- Removed dangerous unwraps. + ## [0.10.8] ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 73094b7..80e5836 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1869,7 +1869,7 @@ dependencies = [ [[package]] name = "sourcepawn_lsp" -version = "0.10.8" +version = "0.10.9" dependencies = [ "anyhow", "assert_unordered", diff --git a/Cargo.toml b/Cargo.toml index ff68891..11bcff9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sourcepawn_lsp" -version = "0.10.8" +version = "0.10.9" edition = "2021" description = "Language Server implemention for the SourcePawn programming language." license = "GPL-3.0"