diff --git a/.github/workflows/build_develop.yml b/.github/workflows/build_develop.yml index 0e9b42a..1ad8190 100644 --- a/.github/workflows/build_develop.yml +++ b/.github/workflows/build_develop.yml @@ -83,7 +83,7 @@ jobs: # Collect Tests Result of failed tests - name: Collect Tests Result if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: tests-result path: ${{ github.workspace }}/build/reports/tests @@ -92,4 +92,4 @@ jobs: - name: Upload Code Coverage Report uses: codecov/codecov-action@v3 with: - files: ${{ github.workspace }}/build/reports/kover/xml/report.xml \ No newline at end of file + files: ${{ github.workspace }}/build/reports/kover/xml/report.xml diff --git a/.github/workflows/build_main.yml b/.github/workflows/build_main.yml index 2e8d8bd..2531abc 100644 --- a/.github/workflows/build_main.yml +++ b/.github/workflows/build_main.yml @@ -83,7 +83,7 @@ jobs: # Collect Tests Result of failed tests - name: Collect Tests Result if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: tests-result path: ${{ github.workspace }}/build/reports/tests @@ -108,7 +108,7 @@ jobs: # Collect Plugin Verifier Result - name: Collect Plugin Verifier Result if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pluginVerifier-result path: ${{ github.workspace }}/build/reports/pluginVerifier @@ -130,7 +130,7 @@ jobs: # Store already-built plugin as an artifact for downloading - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ steps.artifact.outputs.filename }} path: ./build/distributions/content/*/* diff --git a/CHANGELOG.md b/CHANGELOG.md index c7f1bb2..9c57adb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,15 +5,21 @@ ## [Unreleased] ### Added -- Added LICENSE file with MIT License to clarify the terms of use. ### Fixed ### Changed -- Expand the plugin's compatible IDE build versions from `241.*` to `243.*`. +- Expand the plugin's compatible IDE build versions from `243.*` to `251.*`. ### Removed +## [2.0.2] - 2024-12-18 +### Added +- Added LICENSE file with MIT License to clarify the terms of use. + +### Changed +- Expand the plugin's compatible IDE build versions from `241.*` to `243.*`. + ## [2.0.1] - 2024-04-04 ### Fixed - Fix plugin compatibility issue after IntelliJ IDEA version 2023.2 @@ -61,7 +67,9 @@ - Define events to detect and add challenges for each event - Implement notification alert feature for leveling up or completing challenges -[Unreleased]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.1...HEAD +[Unreleased]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.2...HEAD + +[2.0.2]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.0...v2.0.1 diff --git a/gradle.properties b/gradle.properties index a4c7c3f..d573943 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,11 +4,11 @@ pluginGroup = com.github.ilovegamecoding.intellijcodexp pluginName = intellij-codexp pluginRepositoryUrl = https://github.com/ILoveGameCoding/intellij-codexp # SemVer format -> https://semver.org -pluginVersion=2.0.2 +pluginVersion=2.0.3 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 232 -pluginUntilBuild = 243.* +pluginUntilBuild = 251.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC