Skip to content

Commit

Permalink
version 0.9.16
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk committed Feb 4, 2025
1 parent 14c204e commit 33b7a5e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

<!-- links start -->
[0.9.16]: https://github.com/aviatesk/JET.jl/compare/v0.9.15...v0.9.16
[0.9.15]: https://github.com/aviatesk/JET.jl/compare/v0.9.14...v0.9.15
[0.9.14]: https://github.com/aviatesk/JET.jl/compare/v0.9.13...v0.9.14
[0.9.13]: https://github.com/aviatesk/JET.jl/compare/v0.9.12...v0.9.13
Expand Down Expand Up @@ -34,6 +35,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[0.8.0]: https://github.com/aviatesk/JET.jl/compare/v0.7.15...v0.8.0
<!-- links end -->

## [0.9.16]
### Changed
- JET is now able to show multiple syntax errors at once, e.g.,
> multisyntaxerrors.jl
```
function f(W,X,Y)
s = 0
for i = 1:10
s += g(W[i]*f(X[end-1] + Y[end÷2+]),
W[i+1]*f(X[end-2] + Y[end÷2]) +,
W[i+2]*f(X[end-3] + Y[end÷2-3]))
end
return s
end
```
```julia
julia> report_file("multisyntaxerrors.jl")
[...]
═════ 2 toplevel errors found ═════
┌ @ multisyntaxerrors.jl:4
# Error @ multisyntaxerrors.jl:4:42
for i = 1:10
│ s += g(W[i]*f(X[end-1] + Y[end÷2+]),
# ╙ ── unexpected `]`
└──────────────────────
┌ @ multisyntaxerrors.jl:5
# Error @ multisyntaxerrors.jl:5:47
│ s += g(W[i]*f(X[end-1] + Y[end÷2+]),
│ W[i+1]*f(X[end-2] + Y[end÷2]) +,
# ╙ ── unexpected `,`
└──────────────────────
```
(aviatesk/JET.jl#687)
## [0.9.15]
### Changed
- JET.jl now will not be loaded on nightly version by default. This ensures that JETremains
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "JET"
uuid = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
authors = ["Shuhei Kadowaki <[email protected]>"]
version = "0.9.15"
version = "0.9.16"

[deps]
CodeTracking = "da1fd8a2-8d9e-5ec2-8556-3022fb5608a2"
Expand Down

2 comments on commit 33b7a5e

@aviatesk
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/124294

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.16 -m "<description of version>" 33b7a5e1b8e30bff66bc85566e8d04e4efe40350
git push origin v0.9.16

Please sign in to comment.