Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Changed

- Updated JuliaSyntax.jl and JuliaLowering.jl dependencies to the latest
development versions.
- Updated documentation deployment to use `release` as the default version.
The documentation now has two versions in the selector: `release` (stable) and
`dev` (development). The root URL redirects to `/release/` by default.
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
[sources]
Glob = {rev = "avi/globstar", url = "https://github.com/aviatesk/Glob.jl"}
JET = {rev = "1e84376", url = "https://github.com/aviatesk/JET.jl"}
JuliaLowering = {rev = "avi/JETLS-JSJL-head", subdir = "JuliaLowering", url = "https://github.com/JuliaLang/julia"}
JuliaSyntax = {rev = "avi/JETLS-JSJL-head", subdir = "JuliaSyntax", url = "https://github.com/JuliaLang/julia"}
JuliaLowering = {rev = "avi/JETLS-JSJL-head-2025-11-26", subdir = "JuliaLowering", url = "https://github.com/JuliaLang/julia"}
JuliaSyntax = {rev = "avi/JETLS-JSJL-head-2025-11-26", subdir = "JuliaSyntax", url = "https://github.com/JuliaLang/julia"}
LSP = {rev = "master", subdir = "LSP", url = "https://github.com/aviatesk/JETLS.jl"}

[compat]
Expand Down
2 changes: 1 addition & 1 deletion test/test_lowering_diagnostics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ end
@test diagnostic.source == JETLS.DIAGNOSTIC_SOURCE
@test diagnostic.message == "Macro name `@notexisting` not found"
@test diagnostic.range.start.line == 0
@test diagnostic.range.start.character == sizeof("x = ")
@test diagnostic.range.start.character == sizeof("x = @")
@test diagnostic.range.var"end".line == 0
@test diagnostic.range.var"end".character == sizeof("x = @notexisting")
end
Expand Down
Loading