From 0558661278074521b8aee0c769945c0cb21b7590 Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 12:46:46 +0900 Subject: [PATCH 1/7] chore: Update gradle.properties for support newest ide version Update ide support version(pluginUntilBuild) to 251.* from 243.* --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index a4c7c3f..4c026dd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ pluginVersion=2.0.2 # 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 From 62ecf3ce1fe747d111bbe1cf657141e8a77ef7d5 Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 12:52:27 +0900 Subject: [PATCH 2/7] chore: Update upload-artifact(ci/cd) Update upload-artifact(ci/cd) version to v4 from v3. --- .github/workflows/build_develop.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From e0a8ed7b0567539d5861a0af84f5e3e13eedf844 Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 12:53:48 +0900 Subject: [PATCH 3/7] chore: Update upload-artifact version Update upload-artifact version to v4 from v3. (build_main.yml) --- .github/workflows/build_main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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/*/* From 86de989032d5426d4757f2ab3773be36f4813bb5 Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 13:22:38 +0900 Subject: [PATCH 4/7] release: Prepare for release v2.0.3 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 4c026dd..d573943 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ 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 From 2870f20c9990dc262ecac0bed324fc77112144ff Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 13:49:25 +0900 Subject: [PATCH 5/7] docs: Update CHANGELOG.md with recent changes --- CHANGELOG.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7f1bb2..5e071ad 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-04-04 +### 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 From 51638165856bd4c78c3bb25f83aa9864398b278a Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 13:50:53 +0900 Subject: [PATCH 6/7] docs: Fix wrong update date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e071ad..27c10ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ ### Removed -## [2.0.2] - 2024-04-04 +## [2.0.2] - 2024-12-18 ### Added - Added LICENSE file with MIT License to clarify the terms of use. From a8d057447ab8ef0d534bb345886fb30036cc3b46 Mon Sep 17 00:00:00 2001 From: Sohn YoungJin Date: Mon, 3 Feb 2025 13:52:37 +0900 Subject: [PATCH 7/7] docs: Add v2.0.2 update log hyperlink --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27c10ca..9c57adb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -67,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