Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml
6 changes: 3 additions & 3 deletions .github/workflows/build_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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/*/*
Expand Down
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading