Skip to content

Commit

Permalink
Prepare for release 0.121
Browse files Browse the repository at this point in the history
  • Loading branch information
giraud committed Feb 2, 2024
1 parent b9bb19e commit 7a7a2e9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@
> - :nail_care: [Polish]
(_Tags are copied from [babel](https://github.com/babel/babel/blob/master/CHANGELOG.md)_)


## 0.121 - 2024/02/02

- :bug: ![o] [#445](https://github.com/giraud/reasonml-idea-plugin/issues/445) Fix jump to implementation
- :bug: ![o] [#442](https://github.com/giraud/reasonml-idea-plugin/issues/442) Incorrect parsing of 'IN' in pattern matching
- :bug: ![o] [#441](https://github.com/giraud/reasonml-idea-plugin/issues/441) Incorrect parsing of pattern matching

## 0.120 - 2024/01/11

- :bug: ![o] [#444](https://github.com/giraud/reasonml-idea-plugin/issues/444) Fix OCaml parser for 'inherit'
Expand Down
8 changes: 3 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,9 @@ intellij {
untilBuild = pluginUntilBuild
changeNotes = """
<ul>
<li>444 - Fix OCaml parser for 'inherit'</li>
<li>440 - Incorrect parsing of record (OCaml)</li>
<li>439 - Do not display 'let _' in structure panel</li>
<li>438 - Resolution of js object field references in Rescript</li>
<li>415 - Remove one level deep in structure view</li>
<li>445 - Fix jump to implementation</li>
<li>442 - Incorrect parsing of 'IN' in pattern matching</li>
<li>441 - Incorrect parsing of pattern matching</li>
</ul>
<p><a href="https://github.com/giraud/reasonml-idea-plugin/blob/master/CHANGELOG.md">Full change log...</a></p>
<p/>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-XX:MaxHeapSize=512m -Xms512m -Xmx1g

pluginGroup = com.reason
pluginName = reasonml-plugin-idea
pluginVersion = 0.120
pluginVersion = 0.121

# http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
pluginSinceBuild = 231.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import com.intellij.psi.search.*;
import com.intellij.psi.search.searches.*;
import com.intellij.util.*;
import com.reason.ide.*;
import com.reason.ide.search.index.*;
import com.reason.lang.core.psi.*;
import jpsplugin.com.reason.*;
Expand Down Expand Up @@ -33,7 +34,7 @@ public void processQuery(@NotNull DefinitionsScopedSearch.SearchParameters query
LOG.debug("Process implementation search for VAL", qName, scope, project);
Collection<RPsiLet> elements = LetFqnIndex.getElements(qName, project, searchScope);
for (RPsiLet element : elements) {
System.out.println("Processing " + element.getQualifiedName() + " " + element.getContainingFile().getVirtualFile());
System.out.println("Processing " + element.getQualifiedName() + " " + ORFileUtils.getVirtualFile(element.getContainingFile()));
consumer.process(element);
}
}
Expand Down

0 comments on commit 7a7a2e9

Please sign in to comment.