Skip to content

v0.4.0

Compare
Choose a tag to compare
@vgramer vgramer released this 04 Apr 10:35
· 57 commits to master since this release
85c8e55

Release notes for v0.4.0

Changes by Kind

Feature

  • Implement auto closing quote feature (#69, @vgramer)

  • Run intellij-plugin-verifier to check plugin binary compatibility in github action

    1. update org.jetbrains.intellij Gradle plugin because the new version offers a task to run the plugin verifier. Consequently, remove the ideaDependencyCachePathcustomization which is not needed anymore.
    2. add a job to run plugin verifier (#62, @vgramer)

Bug or Regression

  • Fix tests for github action and macOS Big Sur (#73, @vgramer)
  • Grammar: allow import between rules and complex expression in else statement (#80, @vgramer)
  • Grammar: don't allow multi-line in strings (#67, @vgramer)
  • Grammar: fix rule-head and expr-infix
    • a:= 1 + 2 was parsed as an error
    • assignment was valid inside affectation (eg a := b = 1 + 2) but should not.
    • a := 1 + 2 +3 was parsed as an error (#74, @vgramer)