Skip to content

Commit

Permalink
bump to 2024.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuataylor committed Aug 14, 2024
1 parent 9fd65e0 commit d5ea8d9
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
ideaVersion: [ "2024.1.4" ]
ideaVersion: [ "2024.2.0.1" ]

steps:
- uses: actions/checkout@v2
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v18.0.2
### Enhancements
* [#3569](https://github.com/KronicDeth/intellij-elixir/pull/3569) - [@ashleysommer](https://github.com/ashleysommer), [@joshuataylor](https://github.com/joshuataylor)
* Support 2024.2

## v18.0.1
### Enhancements
* [#3582](https://github.com/KronicDeth/intellij-elixir/pull/3582) - [@rNoz](https://github.com/rNoz)
* Enabling proper code generation for comments (Comment with Line/Block Comment)

## v18.0.0
### Breaking changes
* [#3569](https://github.com/KronicDeth/intellij-elixir/pull/3569) - [@ashleysommer](https://github.com/ashleysommer), [@joshuataylor](https://github.com/joshuataylor)
Expand Down
2 changes: 1 addition & 1 deletion resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<vendor email="[email protected]">Elle Imhoff</vendor>

<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="241.14494.240"/>
<idea-version since-build="242.20224.300"/>

<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
on how to target different products -->
Expand Down
9 changes: 5 additions & 4 deletions src/org/elixir_lang/mix/project/DirectoryConfigurator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,11 @@ class DirectoryConfigurator : com.intellij.platform.DirectoryProjectConfigurator
null
} else {
val path = otpApp.root.path.let { Paths.get(it) }
val openProjectTask = OpenProjectTask(
isNewProject = true,
useDefaultProjectAsTemplate = false,
).copy(projectName = otpApp.name)
val openProjectTask = OpenProjectTask {
isNewProject = true
useDefaultProjectAsTemplate = false
projectName = otpApp.name
}

ProjectManagerEx
.getInstanceEx()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
import com.intellij.codeInsight.completion.CompletionType;
import com.intellij.codeInsight.lookup.LookupElement;
import com.intellij.codeInsight.lookup.LookupElementPresentation;
import com.intellij.testFramework.fixtures.LightPlatformCodeInsightFixtureTestCase;
import com.intellij.testFramework.fixtures.BasePlatformTestCase;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.util.List;

public class CallDefinitionClauseTest extends LightPlatformCodeInsightFixtureTestCase {
public class CallDefinitionClauseTest extends BasePlatformTestCase {
/*
* Tests
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import com.intellij.codeInsight.lookup.LookupElement;
import com.intellij.codeInsight.lookup.LookupElementPresentation;
import com.intellij.psi.PsiElement;
import com.intellij.testFramework.fixtures.LightPlatformCodeInsightFixtureTestCase;
import com.intellij.testFramework.fixtures.BasePlatformTestCase;
import org.elixir_lang.psi.call.Call;
import org.jetbrains.annotations.NotNull;

public class CallDefinitionClauseTest extends LightPlatformCodeInsightFixtureTestCase {
public class CallDefinitionClauseTest extends BasePlatformTestCase {
/*
* Tests
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package org.elixir_lang.structure_view.element;

import com.intellij.psi.PsiElement;
import com.intellij.testFramework.fixtures.LightPlatformCodeInsightFixtureTestCase;
import com.intellij.testFramework.fixtures.BasePlatformTestCase;
import org.elixir_lang.psi.call.Call;

public class CallDefinitionHeadTest extends LightPlatformCodeInsightFixtureTestCase {
public class CallDefinitionHeadTest extends BasePlatformTestCase {
/*
* Tests
*/
Expand Down

0 comments on commit d5ea8d9

Please sign in to comment.