Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/issue 51 #52

Merged
merged 2 commits into from
Nov 19, 2024
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
39 changes: 38 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@
# RestfulHelper Changelog

## [Unreleased]

- Resolve [issue-51](https://github.com/Nayacco/RestfulHelper/issues/51)

## [0.4.4-stable] - 2024-11-17

- Support IntelliJ IDEA 2024.3
- Upgrade Kotlin to 2.0.21
- Upgrade org.jetbrains.intellij.platform to 2.1.0
- Upgrade platformVersion to 2024.3

## [0.4.3-stable]

- Support IntelliJ IDEA 2024.2
- Upgrade Gradle to 8.9
- Upgrade Kotlin to 1.9.24
Expand All @@ -17,26 +23,32 @@
- Upgrade Java to 21

## [0.4.2-stable]

- Support IntelliJ IDEA 2024.1

## [0.4.0-stable]

- Support IntelliJ IDEA 2023.3

## [0.3.0-stable]

- Support IntelliJ IDEA 2023.2
- Add module name to location

## [0.2.8-stable]

- Support IntelliJ IDEA 2023.1
- Upgrade Gradle to 8.0.2
- Upgrade org.jetbrains.kotlin.jvm to 1.8.10
- Upgrade org.jetbrains.intellij to 1.13.3

## [0.2.7-stable]

- Support IntelliJ IDEA 2022.3
- Upgrade org.jetbrains.intellij to 1.10.0

## [0.2.6-stable]

- Support IntelliJ IDEA 2022.2
- Upgrade Java to 17
- Remove deprecated api
Expand All @@ -45,26 +57,51 @@
- Upgrade org.jetbrains.changelog to 1.3.1

## [0.2.5-stable]

- Support IntelliJ IDEA 2022.1
- Upgrade Gradle to 7.4.2
- Upgrade org.jetbrains.intellij to 1.5.2
- Upgrade org.jetbrains.kotlin.jvm to 1.6.20

## [0.2.4-stable]

- Remove deprecated api
- Fix the problem of incorrectly identifying mybatis annotations

## [0.2.2-stable]

- Support IntelliJ IDEA 2021.3

## [0.2.1-stable]

### Fix

- Support IntelliJ IDEA higher than 2021.2

## [0.2.0-stable]

### Fix

- remove internal api

## [0.1.0-stable.1]

### Added
- πŸŽ‰ release for 2021.2

- πŸŽ‰ release for 2021.2

[Unreleased]: https://github.com/Nayacco/RestfulHelper/compare/v0.4.4-stable...HEAD
[0.4.4-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.4.3-stable...v0.4.4-stable
[0.4.3-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.4.2-stable...v0.4.3-stable
[0.4.2-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.4.0-stable...v0.4.2-stable
[0.4.0-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.3.0-stable...v0.4.0-stable
[0.3.0-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.2.8-stable...v0.3.0-stable
[0.2.8-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.2.7-stable...v0.2.8-stable
[0.2.7-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.2.6-stable...v0.2.7-stable
[0.2.6-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.2.5-stable...v0.2.6-stable
[0.2.5-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.2.4-stable...v0.2.5-stable
[0.2.4-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.2.2-stable...v0.2.4-stable
[0.2.2-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.2.1-stable...v0.2.2-stable
[0.2.1-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.2.0-stable...v0.2.1-stable
[0.2.0-stable]: https://github.com/Nayacco/RestfulHelper/compare/v0.1.0-stable.1...v0.2.0-stable
[0.1.0-stable.1]: https://github.com/Nayacco/RestfulHelper/commits/v0.1.0-stable.1
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pluginGroup = com.github.nayacco.restfulhelper
pluginName = RestfulHelper
pluginVersion = 0.4.4-stable
pluginVersion = 0.4.5-stable
pluginRepositoryUrl = https://github.com/Nayacco/RestfulHelper

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<idea-plugin require-restart="false">
<id>com.github.goldsubmarine.restfulhelper</id>
<id>com.github.nayacco.restfulhelper</id>
<name>RestfulHelper</name>
<vendor email="[email protected]" url="https://github.com/Nayacco">Nayacco</vendor>

Expand Down
Loading