Skip to content

Commit

Permalink
release 2.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tangcent committed Mar 31, 2024
1 parent 6b8b0ae commit 04c9072
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 6 deletions.
9 changes: 9 additions & 0 deletions IDEA_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 12 additions & 2 deletions idea-plugin/parts/pluginChanges.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
<a href="https://github.com/tangcent/easy-yapi/releases/tag/v2.6.8">v2.6.8(2023-11-26)</a><br>
<a href="https://github.com/tangcent/easy-yapi/releases/tag/v2.6.9">v2.6.9(2024-03-31)</a><br>
<a href="https://github.com/tangcent/easy-yapi/blob/master/IDEA_CHANGELOG.md">Full Changelog</a>

<ul>
<li style="list-style: none">enhancements:</li>

<li>enhancements: feat: Enhance support for enum fields in 'field' (<a href="https://github.com/tangcent/easy-yapi/pull/1083">#1083</a>)</li>
<li>feat: optimize configuration loading logic for enhanced efficiency and reliability (<a href="https://github.com/tangcent/easy-yapi/pull/1107">#1107</a>)</li>
</ul>

<ul>
<li style="list-style: none">fixes:</li>

<li>fix: implement error handling in remoteConfigContent function (<a href="https://github.com/tangcent/easy-yapi/pull/1115">#1115</a>)</li>

<li>fix: resolve comment for custom enum field (<a href="https://github.com/tangcent/easy-yapi/pull/1112">#1112</a>)</li>

<li>fix: resolve configuration loading issue in several actions (<a href="https://github.com/tangcent/easy-yapi/pull/1111">#1111</a>)</li>
</ul>
2 changes: 1 addition & 1 deletion idea-plugin/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin>
<id>com.itangcent.idea.plugin.easy-yapi</id>
<name>EasyYapi</name>
<version>2.6.8.212.0</version>
<version>2.6.9.212.0</version>
<vendor email="[email protected]" url="https://github.com/tangcent">Tangcent</vendor>

<description><![CDATA[ Description will be added by gradle build]]></description>
Expand Down
4 changes: 2 additions & 2 deletions plugin-script/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ echo "<a href=\"https://github.com/tangcent/easy-yapi/blob/master/IDEA_CHANGELOG

# Write the list of enhancements to the pluginChanges.html file (if there are any)
if [ -n "${enhancements}" ]; then
echo "<ul>enhancements: ${enhancements}</ul>" >> ${basedir}/idea-plugin/parts/pluginChanges.html
echo "<ul>${enhancements}</ul>" >> ${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 "<ul>fixes: ${fixes}</ul>" >> ${basedir}/idea-plugin/parts/pluginChanges.html
echo "<ul>${fixes}</ul>" >> ${basedir}/idea-plugin/parts/pluginChanges.html
fi

# Append the list of other commits to the pluginChanges.html file (if there are any)
Expand Down

0 comments on commit 04c9072

Please sign in to comment.