Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024.1 minor update #3579

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ JetBrains plugins are able to set the text attribute values for `TextAttributeKe

## Building

### Plugin
If using WSL for your build environment you may alternatively build the plugin without launching the linux version of intellij.
From the command line run `./gradlew buildPlugin` or from IntelliJ, right-click `intellij-elixir` in the Gradle Tool Window and select `buildPlugin`.
and install from the `build/distributions` folder.

### Documentation

The documentation files ([`CHANGELOG.md`](CHANGELOG.md), [`CONTRIBUTING.md`](CONTRIBUTING.md), [`README.md`](README.md),
Expand All @@ -127,4 +132,3 @@ Then regenerate the table of contents using `doctoc`
```sh
doctoc .
```

5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ allprojects {
pluginDescription.set(bodyInnerHTML("resources/META-INF/description.html"))

sinceBuild = "233.11799.241"
untilBuild = "233.*"
untilBuild = "241.*"
}

publishPlugin {
Expand All @@ -82,7 +82,7 @@ allprojects {
}

runPluginVerifier {
ideVersions = ["2023.3"]
ideVersions = ["2024.1"]
}
}

Expand Down Expand Up @@ -263,4 +263,3 @@ test {
dependsOn runQuoter
finalizedBy stopQuoter
}

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://www.jetbrains.com/intellij-repository/releases
# https://www.jetbrains.com/intellij-repository/snapshots
baseVersion=17.0.0
ideaVersion=2023.3
ideaVersion=2024.1
# MUST stay at 1.8 for JPS (Build/Compile Project) compatibility even if JRE/JBR is newer
javaVersion=17
javaTargetVersion=17
Expand Down