Skip to content

Commit

Permalink
Merge pull request #82 from Jozott00/feature/sup-latest-version
Browse files Browse the repository at this point in the history
Support IntelliJ Platform 2024.3.*
  • Loading branch information
Jozott00 authored Sep 18, 2024
2 parents 9256dbc + 426ed9d commit 98af560
Show file tree
Hide file tree
Showing 7 changed files with 272 additions and 263 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,7 @@ jobs:

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2024.1.5
with:
cache-default-branch-only: true
uses: JetBrains/qodana-action@v2024.2.2

# Run plugin structure verification along with IntelliJ Plugin Verifier
verify:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:

# Check out current repository
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4

Expand All @@ -44,7 +44,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
uses: gradle/actions/setup-gradle@v3
with:
gradle-home-cache-cleanup: true

Expand All @@ -62,4 +62,4 @@ jobs:

# Run tests
- name: Tests
run: ./gradlew test
run: ./gradlew test
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.gradle
.idea
.qodana
.intellijPlatform
.kotlin
build

.notes
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

### Added

- Support for IntelliJ Platform 2024.3.*

## [0.10.2] - 2024-09-18

### Added

- Support for IntelliJ Platform 2024.2.*

## [0.10.1] - 2024-03-06
Expand Down Expand Up @@ -45,6 +51,8 @@ most Intellij users.

[Unreleased]: https://github.com/Jozott00/wokwi-intellij/compare/v0.10.1...HEAD

[0.10.2]: https://github.com/Jozott00/wokwi-intellij/compare/v0.10.1...v0.10.2

[0.10.1]: https://github.com/Jozott00/wokwi-intellij/compare/v0.10.0...v0.10.1

[0.10.0]: https://github.com/Jozott00/wokwi-intellij/commits/v0.10.0
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ kotlin {
jvmToolchain(17)
}

// Configure project's dependencies
// Configure the project's dependencies
repositories {
mavenCentral()

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ pluginGroup=com.github.jozott00.wokwiintellij
pluginName=wokwi-intellij
pluginRepositoryUrl=https://github.com/Jozott00/wokwi-intellij
# SemVer format -> https://semver.org
pluginVersion=0.10.2
pluginVersion=0.10.3
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild=242
pluginUntilBuild=242.*
pluginUntilBuild=243.*
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType=IC
platformVersion=2024.2
Expand Down
Loading

0 comments on commit 98af560

Please sign in to comment.