Skip to content

Commit

Permalink
7.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmengels committed Sep 11, 2024
1 parent 1093a42 commit 1e1ae7e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

## [Unreleased]

## [7.3.6] - 2024-09-11

- The parser is stricter in a few cases where code that was incorrect (according to the Elm compiler) was successfully parsed: tuple patterns and tuple type annotations with more than 3 parts, non-associative operators (so no more `a < b < c`), lambda indentation
- The parser removes incorrect failures with specific operator combinations like `a + b /= 0` due to specifics of the pratt parser
- Parsing is about 50% faster than the previous release!

## [7.3.5] - 2024-08-30

Expand Down Expand Up @@ -148,7 +151,8 @@ With this change some additional big changes were made to the projects and the d
- Range information is added to a significant bigger set of AST elements.
- The decoders and encoders for the specific AST elements are moved to their modules (`Elm.Syntax.*`).

[Unreleased]: https://github.com/stil4m/elm-syntax/compare/v7.3.5...HEAD
[Unreleased]: https://github.com/stil4m/elm-syntax/compare/v7.3.6...HEAD
[7.3.6]: https://github.com/stil4m/elm-syntax/releases/tag/7.3.6
[7.3.5]: https://github.com/stil4m/elm-syntax/releases/tag/7.3.5
[7.3.4]: https://github.com/stil4m/elm-syntax/releases/tag/7.3.4
[7.3.3]: https://github.com/stil4m/elm-syntax/releases/tag/7.3.3
Expand Down
2 changes: 1 addition & 1 deletion elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "stil4m/elm-syntax",
"summary": "Elm Syntax in Elm: for parsing and writing Elm in Elm",
"license": "MIT",
"version": "7.3.5",
"version": "7.3.6",
"exposed-modules": [
"Elm.Dependency",
"Elm.Interface",
Expand Down
2 changes: 1 addition & 1 deletion find-regressions/published/elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"elm/core": "1.0.5",
"elm/json": "1.1.3",
"elm/parser": "1.1.0",
"stil4m/elm-syntax": "7.3.5"
"stil4m/elm-syntax": "7.3.6"
},
"indirect": {
"rtfeldman/elm-hex": "1.0.0",
Expand Down

0 comments on commit 1e1ae7e

Please sign in to comment.