diff --git a/IDEA_CHANGELOG.md b/IDEA_CHANGELOG.md index 03b231f4a..e91137c5e 100644 --- a/IDEA_CHANGELOG.md +++ b/IDEA_CHANGELOG.md @@ -1,3 +1,12 @@ +* 2.6.9 + * fix: implement error handling in remoteConfigContent function [(#1115)](https://github.com/tangcent/easy-yapi/pull/1115) + + * fix: resolve comment for custom enum field [(#1112)](https://github.com/tangcent/easy-yapi/pull/1112) + + * fix: resolve configuration loading issue in several actions [(#1111)](https://github.com/tangcent/easy-yapi/pull/1111) + + * feat: optimize configuration loading logic for enhanced efficiency and reliability [(#1107)](https://github.com/tangcent/easy-yapi/pull/1107) + * 2.6.8 * feat: Enhance support for enum fields in 'field' [(#1083)](https://github.com/tangcent/easy-yapi/pull/1083) diff --git a/gradle.properties b/gradle.properties index b8157bb10..0213836b4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ plugin_name=EasyYapi -plugin_version=2.6.8.212.0 +plugin_version=2.6.9.212.0 kotlin.code.style=official kotlin_version=1.8.0 junit_version=5.9.2 diff --git a/idea-plugin/parts/pluginChanges.html b/idea-plugin/parts/pluginChanges.html index 685d1d809..6d877768f 100644 --- a/idea-plugin/parts/pluginChanges.html +++ b/idea-plugin/parts/pluginChanges.html @@ -1,8 +1,18 @@ -v2.6.8(2023-11-26)
+v2.6.9(2024-03-31)
Full Changelog + + diff --git a/idea-plugin/src/main/resources/META-INF/plugin.xml b/idea-plugin/src/main/resources/META-INF/plugin.xml index 9f284765d..343200123 100644 --- a/idea-plugin/src/main/resources/META-INF/plugin.xml +++ b/idea-plugin/src/main/resources/META-INF/plugin.xml @@ -1,7 +1,7 @@ com.itangcent.idea.plugin.easy-yapi EasyYapi - 2.6.8.212.0 + 2.6.9.212.0 Tangcent diff --git a/plugin-script/release.sh b/plugin-script/release.sh index cf02474de..d10242533 100755 --- a/plugin-script/release.sh +++ b/plugin-script/release.sh @@ -51,12 +51,12 @@ echo "enhancements: ${enhancements}" >> ${basedir}/idea-plugin/parts/pluginChanges.html + echo "" >> ${basedir}/idea-plugin/parts/pluginChanges.html fi # Append the list of fixes to the pluginChanges.html file (if there are any) if [ -n "${fixes}" ]; then - echo "" >> ${basedir}/idea-plugin/parts/pluginChanges.html + echo "" >> ${basedir}/idea-plugin/parts/pluginChanges.html fi # Append the list of other commits to the pluginChanges.html file (if there are any)