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

Support 2023.3 #69

Merged
merged 2 commits into from
Oct 21, 2023
Merged
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: 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
## [Unreleased]

### Added
- Support for IDEA 2023.3

### Changed

### Deprecated

### Removed
- Support for IDEA 2022.2

### Fixed

Expand Down
6 changes: 3 additions & 3 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
pluginUntilBuild = 232.*
pluginSinceBuild = 223
pluginUntilBuild = 233.*
JojOatXGME marked this conversation as resolved.
Show resolved Hide resolved

platformType = IC
platformVersion = 2022.2.5
platformVersion = 2022.3.3
Loading