diff --git a/IDEA_CHANGELOG.md b/IDEA_CHANGELOG.md index 24feda5f5..fd31566cf 100644 --- a/IDEA_CHANGELOG.md +++ b/IDEA_CHANGELOG.md @@ -1,3 +1,12 @@ +* 2.1.0~ + + * fix: always trim the name of folder [(#314)](https://github.com/tangcent/easy-yapi/pull/314) + + * support param.required for methodDoc [(#315)](https://github.com/tangcent/easy-yapi/pull/315) + + * opti: support `setter` for `toJson(5)` [(#318)](https://github.com/tangcent/easy-yapi/pull/318) + + * opti: use raw as body and use unbox for query/form [(#320)](https://github.com/tangcent/easy-yapi/pull/320) * 2.0.0~ diff --git a/build.gradle b/build.gradle index 859290978..4170ea721 100644 --- a/build.gradle +++ b/build.gradle @@ -1,2 +1,2 @@ group 'com.itangcent' -version '2.1.0.183.0' \ No newline at end of file +version '2.1.1.183.0' \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 738739d80..7b6068520 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ org.gradle.daemon=true org.gradle.workers.max=8 idea_version=2017.3.5 plugin_name=EasyYapi -plugin_version=2.1.0.183.0 +plugin_version=2.1.1.183.0 descriptionFile=parts/pluginDescription.html changesFile=parts/pluginChanges.html \ No newline at end of file diff --git a/idea-plugin/parts/pluginChanges.html b/idea-plugin/parts/pluginChanges.html index fae8dbfa3..5bf249b72 100644 --- a/idea-plugin/parts/pluginChanges.html +++ b/idea-plugin/parts/pluginChanges.html @@ -1,20 +1,22 @@ -v2.1.0.183.0(2021-01-10) +v2.1.1.183.0(2021-01-25)
Full Changelog + \ No newline at end of file diff --git a/idea-plugin/src/main/resources/META-INF/plugin.xml b/idea-plugin/src/main/resources/META-INF/plugin.xml index a7653258d..1e4dcecd1 100755 --- 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.1.0.183.0 + 2.1.1.183.0 Tangcent