diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f99932..7f577cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,9 +3,10 @@ # intellij-pangu Changelog ## [Unreleased] +- Add support for `///` comments in Rust. [#18](https://github.com/LiLittleCat/intellij-pangu/issues/18) ## [1.2.1] - 2023-04-05 -- Support for all future IDE builds [#15](https://github.com/LiLittleCat/intellij-pangu/issues/15)%0D%0A%0A[Unreleased]: https://github.com/LiLittleCat/intellij-pangu/compare/v1.2.0...HEAD +- Support for all future IDE builds. [#15](https://github.com/LiLittleCat/intellij-pangu/issues/15) ## [1.2.0] - 2023-03-05 - Fix some issues. @@ -14,7 +15,7 @@ ## [1.1.3] ### Added -- Support 2022.3 +- Support 2022.3. ## [1.1.2] - Fix some issues. @@ -36,8 +37,8 @@ - Spacing selected content. - Spacing whole file. -[Unreleased]: null/compare/v1.2.1...HEAD -[1.2.1]: null/compare/v1.2.0...v1.2.1 +[Unreleased]: https://github.com/LiLittleCat/intellij-pangu/compare/v1.2.1...HEAD +[1.2.1]: https://github.com/LiLittleCat/intellij-pangu/compare/v1.2.0...v1.2.1 [1.2.0]: https://github.com/LiLittleCat/intellij-pangu/compare/v1.1.3...v1.2.0 [1.1.3]: https://github.com/LiLittleCat/intellij-pangu/compare/v1.1.2...v1.1.3 [1.1.2]: https://github.com/LiLittleCat/intellij-pangu/compare/v1.1.1...v1.1.2 diff --git a/gradle.properties b/gradle.properties index 92b50c0..afcc3b1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.lilittlecat.plugin.intellij-pangu pluginName = Pangu # SemVer format -> https://semver.org -pluginVersion = 1.2.1 +pluginVersion = 1.2.2 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. @@ -33,4 +33,10 @@ kotlin.stdlib.default.dependency = false # Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html # suppress inspection "UnusedProperty" -org.gradle.unsafe.configuration-cache = true \ No newline at end of file +org.gradle.unsafe.configuration-cache = true + +# add proxy +#systemProp.http.proxyHost=127.0.0.1 +#systemProp.http.proxyPort=7890 +#systemProp.https.proxyHost=127.0.0.1 +#systemProp.https.proxyPort=7890 \ No newline at end of file