Skip to content

Commit 5b9c6ca

Browse files
authored
Merge pull request #69 from joedevivo/2023.3
Support 2023.3
2 parents 4927f5c + 41aff9a commit 5b9c6ca

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
jdk: [ 11 ]
30+
jdk: [ 17 ]
3131
include:
32-
- jdk: 11
32+
- jdk: 17
3333
primary: true
3434

3535
steps:
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/setup-java@v3
4141
with:
4242
java-version: ${{ matrix.jdk }}
43-
distribution: adopt
43+
distribution: temurin
4444
# Setup caches and collect metadata
4545
- name: Setup cache for Gradle and dependencies
4646
uses: actions/cache@v3

.github/workflows/bump-version.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
# Setup environment
2121
- name: Checkout repository
2222
uses: actions/checkout@v3
23-
- name: Set up JDK 11
23+
- name: Set up JDK 17
2424
uses: actions/setup-java@v3
2525
with:
26-
java-version: 11
27-
distribution: adopt
26+
java-version: 17
27+
distribution: temurin
2828
# Fail if the release was not triggered from the master branch
2929
- name: Verify branch
3030
if: github.event_name == 'release'

.github/workflows/publish-to-jetbrains.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
# Setup environment
2121
- name: Checkout repository
2222
uses: actions/checkout@v3
23-
- name: Set up JDK 11
23+
- name: Set up JDK 17
2424
uses: actions/setup-java@v3
2525
with:
26-
java-version: 11
27-
distribution: adopt
26+
java-version: 17
27+
distribution: temurin
2828
# Setup cache
2929
- name: Setup cache for Gradle and dependencies
3030
uses: actions/cache@v3

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
## [Unreleased]
44

55
### Added
6+
- Support for IDEA 2023.3
67

78
### Changed
89

910
### Deprecated
1011

1112
### Removed
13+
- Support for IDEA 2022.2
1214

1315
### Fixed
1416

gradle.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
pluginGroup = org.nixos.idea
55
pluginName = NixIDEA
66
pluginVersion = 0.4.0.11
7-
pluginSinceBuild = 222
8-
pluginUntilBuild = 232.*
7+
pluginSinceBuild = 223
8+
pluginUntilBuild = 233.*
99

1010
platformType = IC
11-
platformVersion = 2022.2.5
11+
platformVersion = 2022.3.3

0 commit comments

Comments
 (0)