diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 16ab52e..92cd9f4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,7 +66,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2.11.0 + uses: gradle/gradle-build-action@v2.12.0 with: gradle-home-cache-cleanup: true @@ -117,7 +117,7 @@ jobs: # Store already-built plugin as an artifact for downloading - name: Upload artifact - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v4.3.0 with: name: ${{ steps.artifact.outputs.filename }} path: ./build/distributions/content/*/* @@ -142,7 +142,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2.11.0 + uses: gradle/gradle-build-action@v2.12.0 with: gradle-home-cache-cleanup: true @@ -153,14 +153,14 @@ jobs: # Collect Tests Result of failed tests - name: Collect Tests Result if: ${{ failure() }} - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v4.3.0 with: name: tests-result path: ${{ github.workspace }}/build/reports/tests # Upload the Kover report to CodeCov - name: Upload Code Coverage Report - uses: codecov/codecov-action@v3.1.4 + uses: codecov/codecov-action@v3.1.5 with: files: ${{ github.workspace }}/build/reports/kover/report.xml @@ -195,7 +195,7 @@ jobs: # Run Qodana inspections - name: Qodana - Code Inspection - uses: JetBrains/qodana-action@v2023.3.0 + uses: JetBrains/qodana-action@v2023.3.1 with: cache-default-branch-only: true @@ -226,11 +226,11 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2.11.0 + uses: gradle/gradle-build-action@v2.12.0 # Cache Plugin Verifier IDEs - name: Setup Plugin Verifier IDEs Cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.0 with: path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} @@ -242,7 +242,7 @@ jobs: # Collect Plugin Verifier Result - name: Collect Plugin Verifier Result if: ${{ always() }} - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v4.3.0 with: name: pluginVerifier-result path: ${{ github.workspace }}/build/reports/pluginVerifier diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d7aebfc..c97a42f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2.11.0 + uses: gradle/gradle-build-action@v2.12.0 with: gradle-home-cache-cleanup: true diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index 4f16bfe..82868bf 100644 --- a/.github/workflows/run-ui-tests.yml +++ b/.github/workflows/run-ui-tests.yml @@ -44,7 +44,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2.11.0 + uses: gradle/gradle-build-action@v2.12.0 with: gradle-home-cache-cleanup: true diff --git a/CHANGELOG.md b/CHANGELOG.md index c1bdf12..2fd41f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.0.21] - 2024-01-28 + +### Bug Fixes + +- Solve some minor issues and update dependencies + ## [1.0.20] - 2023-12-12 ### Bug Fixes diff --git a/gradle.properties b/gradle.properties index 1762e4f..5b21571 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,11 +5,11 @@ pluginName = IntelliJ Tauri Plugin pluginRepositoryUrl = https://github.com/KartanHQ/intellij-tauri # SemVer format -> https://semver.org -pluginVersion = 1.0.20 +pluginVersion = 1.0.21 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 222 -pluginUntilBuild = 233.* +pluginUntilBuild = 241.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IU diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index febb8cd..773bb14 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,9 +3,9 @@ annotations = "24.1.0" # plugins -kotlin = "1.9.21" +kotlin = "1.9.22" changelog = "2.2.0" -gradleIntelliJPlugin = "1.16.1" +gradleIntelliJPlugin = "1.17.0" qodana = "0.1.13" kover = "0.7.5" diff --git a/settings.gradle.kts b/settings.gradle.kts index e603fdb..5a48fa1 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0" + id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" } rootProject.name = "intellij-tauri"