Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
[build] min. IDE = 2022.2, Java 17, max = 2024.1
Browse files Browse the repository at this point in the history
  • Loading branch information
YannCebron committed Mar 1, 2024
1 parent 1e8c796 commit 1eb92cc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
java-version: 17

# Setup Gradle
- name: Setup Gradle
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
java-version: 17

# Setup Gradle
- name: Setup Gradle
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
java-version: 17

# Run Qodana inspections
- name: Qodana - Code Inspection
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
java-version: 17

# Setup Gradle
- name: Setup Gradle
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
java-version: 17

# Remove old release drafts by using the curl request for the available releases with a draft flag
- name: Remove Old Release Drafts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
java-version: 17

# Setup Gradle
- name: Setup Gradle
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Changed
- mark plugin compatible with 2024.1
- raise minimum IDE version to 2022.2 (from 2021.2)

## 0.1.73 - 2023-07-25

### Changed
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ pluginVersion = 0.1.8-dev

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 212
pluginUntilBuild = 233.*
pluginSinceBuild = 222
pluginUntilBuild = 241.*

# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions.
pluginVerifierIdeVersions = 2021.3.3, 2022.1.4, 2022.2.5, 2022.3.3, 2023.1.5, 2023.2
pluginVerifierIdeVersions = 2022.3.3, 2023.1.6, 2023.2.6, 2023.3.4

platformType = IC
platformVersion = 2021.2.4
platformVersion = 2022.2.5

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins =

# Java language level used to compile sources and to generate the files for - Java 11 is required since 2020.3
javaVersion = 11
javaVersion = 17

gradleVersion = 8.6

Expand Down

0 comments on commit 1eb92cc

Please sign in to comment.