Skip to content

Commit 5f62fad

Browse files
authored
Merge pull request #18 from ByteAurora/develop
Release CodeXP v2.0.3
2 parents c2d872a + a8d0574 commit 5f62fad

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

.github/workflows/build_develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
# Collect Tests Result of failed tests
8484
- name: Collect Tests Result
8585
if: ${{ failure() }}
86-
uses: actions/upload-artifact@v3
86+
uses: actions/upload-artifact@v4
8787
with:
8888
name: tests-result
8989
path: ${{ github.workspace }}/build/reports/tests
@@ -92,4 +92,4 @@ jobs:
9292
- name: Upload Code Coverage Report
9393
uses: codecov/codecov-action@v3
9494
with:
95-
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml
95+
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml

.github/workflows/build_main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
# Collect Tests Result of failed tests
8484
- name: Collect Tests Result
8585
if: ${{ failure() }}
86-
uses: actions/upload-artifact@v3
86+
uses: actions/upload-artifact@v4
8787
with:
8888
name: tests-result
8989
path: ${{ github.workspace }}/build/reports/tests
@@ -108,7 +108,7 @@ jobs:
108108
# Collect Plugin Verifier Result
109109
- name: Collect Plugin Verifier Result
110110
if: ${{ always() }}
111-
uses: actions/upload-artifact@v3
111+
uses: actions/upload-artifact@v4
112112
with:
113113
name: pluginVerifier-result
114114
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -130,7 +130,7 @@ jobs:
130130
131131
# Store already-built plugin as an artifact for downloading
132132
- name: Upload artifact
133-
uses: actions/upload-artifact@v3
133+
uses: actions/upload-artifact@v4
134134
with:
135135
name: ${{ steps.artifact.outputs.filename }}
136136
path: ./build/distributions/content/*/*

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,21 @@
55
## [Unreleased]
66

77
### Added
8-
- Added LICENSE file with MIT License to clarify the terms of use.
98

109
### Fixed
1110

1211
### Changed
13-
- Expand the plugin's compatible IDE build versions from `241.*` to `243.*`.
12+
- Expand the plugin's compatible IDE build versions from `243.*` to `251.*`.
1413

1514
### Removed
1615

16+
## [2.0.2] - 2024-12-18
17+
### Added
18+
- Added LICENSE file with MIT License to clarify the terms of use.
19+
20+
### Changed
21+
- Expand the plugin's compatible IDE build versions from `241.*` to `243.*`.
22+
1723
## [2.0.1] - 2024-04-04
1824
### Fixed
1925
- Fix plugin compatibility issue after IntelliJ IDEA version 2023.2
@@ -61,7 +67,9 @@
6167
- Define events to detect and add challenges for each event
6268
- Implement notification alert feature for leveling up or completing challenges
6369

64-
[Unreleased]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.1...HEAD
70+
[Unreleased]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.2...HEAD
71+
72+
[2.0.2]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.1...v2.0.2
6573

6674
[2.0.1]: https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.0...v2.0.1
6775

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ pluginGroup = com.github.ilovegamecoding.intellijcodexp
44
pluginName = intellij-codexp
55
pluginRepositoryUrl = https://github.com/ILoveGameCoding/intellij-codexp
66
# SemVer format -> https://semver.org
7-
pluginVersion=2.0.2
7+
pluginVersion=2.0.3
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 232
11-
pluginUntilBuild = 243.*
11+
pluginUntilBuild = 251.*
1212

1313
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1414
platformType = IC

0 commit comments

Comments
 (0)