Skip to content

Commit

Permalink
Remove support for IDEA 2022.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JojOatXGME committed Oct 21, 2023
1 parent 59e155b commit 41aff9a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
strategy:
fail-fast: false
matrix:
jdk: [ 11 ]
jdk: [ 17 ]
include:
- jdk: 11
- jdk: 17
primary: true

steps:
Expand All @@ -40,7 +40,7 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.jdk }}
distribution: adopt
distribution: temurin
# Setup caches and collect metadata
- name: Setup cache for Gradle and dependencies
uses: actions/cache@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
# Setup environment
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
distribution: adopt
java-version: 17
distribution: temurin
# Fail if the release was not triggered from the master branch
- name: Verify branch
if: github.event_name == 'release'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-jetbrains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
# Setup environment
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
distribution: adopt
java-version: 17
distribution: temurin
# Setup cache
- name: Setup cache for Gradle and dependencies
uses: actions/cache@v3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
### Deprecated

### Removed
- Support for IDEA 2022.2

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
pluginGroup = org.nixos.idea
pluginName = NixIDEA
pluginVersion = 0.4.0.11
pluginSinceBuild = 222
pluginSinceBuild = 223
pluginUntilBuild = 233.*

platformType = IC
platformVersion = 2022.2.5
platformVersion = 2022.3.3

0 comments on commit 41aff9a

Please sign in to comment.