File tree Expand file tree Collapse file tree 4 files changed +18
-10
lines changed Expand file tree Collapse file tree 4 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 83
83
# Collect Tests Result of failed tests
84
84
- name : Collect Tests Result
85
85
if : ${{ failure() }}
86
- uses : actions/upload-artifact@v3
86
+ uses : actions/upload-artifact@v4
87
87
with :
88
88
name : tests-result
89
89
path : ${{ github.workspace }}/build/reports/tests
92
92
- name : Upload Code Coverage Report
93
93
uses : codecov/codecov-action@v3
94
94
with :
95
- files : ${{ github.workspace }}/build/reports/kover/xml/report.xml
95
+ files : ${{ github.workspace }}/build/reports/kover/xml/report.xml
Original file line number Diff line number Diff line change 83
83
# Collect Tests Result of failed tests
84
84
- name : Collect Tests Result
85
85
if : ${{ failure() }}
86
- uses : actions/upload-artifact@v3
86
+ uses : actions/upload-artifact@v4
87
87
with :
88
88
name : tests-result
89
89
path : ${{ github.workspace }}/build/reports/tests
@@ -108,7 +108,7 @@ jobs:
108
108
# Collect Plugin Verifier Result
109
109
- name : Collect Plugin Verifier Result
110
110
if : ${{ always() }}
111
- uses : actions/upload-artifact@v3
111
+ uses : actions/upload-artifact@v4
112
112
with :
113
113
name : pluginVerifier-result
114
114
path : ${{ github.workspace }}/build/reports/pluginVerifier
@@ -130,7 +130,7 @@ jobs:
130
130
131
131
# Store already-built plugin as an artifact for downloading
132
132
- name : Upload artifact
133
- uses : actions/upload-artifact@v3
133
+ uses : actions/upload-artifact@v4
134
134
with :
135
135
name : ${{ steps.artifact.outputs.filename }}
136
136
path : ./build/distributions/content/*/*
Original file line number Diff line number Diff line change 5
5
## [ Unreleased]
6
6
7
7
### Added
8
- - Added LICENSE file with MIT License to clarify the terms of use.
9
8
10
9
### Fixed
11
10
12
11
### 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 .*` .
14
13
15
14
### Removed
16
15
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
+
17
23
## [ 2.0.1] - 2024-04-04
18
24
### Fixed
19
25
- Fix plugin compatibility issue after IntelliJ IDEA version 2023.2
61
67
- Define events to detect and add challenges for each event
62
68
- Implement notification alert feature for leveling up or completing challenges
63
69
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
65
73
66
74
[ 2.0.1 ] : https://github.com/ILoveGameCoding/intellij-codexp/compare/v2.0.0...v2.0.1
67
75
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ pluginGroup = com.github.ilovegamecoding.intellijcodexp
4
4
pluginName = intellij-codexp
5
5
pluginRepositoryUrl = https://github.com/ILoveGameCoding/intellij-codexp
6
6
# SemVer format -> https://semver.org
7
- pluginVersion =2.0.2
7
+ pluginVersion =2.0.3
8
8
9
9
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10
10
pluginSinceBuild = 232
11
- pluginUntilBuild = 243 .*
11
+ pluginUntilBuild = 251 .*
12
12
13
13
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
14
14
platformType = IC
You can’t perform that action at this time.
0 commit comments