Skip to content
This repository was archived by the owner on Dec 4, 2025. It is now read-only.

Commit 087fa0f

Browse files
committed
release 1.2.0
1 parent 87fbb97 commit 087fa0f

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ When you need to use smart-doc to generate more API document information, you ca
102102
"inlineEnum":true,// Set to true to display enumeration details in the parameter table
103103
"recursionLimit":7,// Set the number of recursive executions to avoid stack overflow, the default is 7
104104
"allInOneDocFileName":"index.html",//Customize the output document name
105+
"displayActualType":false,//display actual type of generic
105106
"requestExample":"true",//Whether to display the request example in the document, the default value is true.
106107
"responseExample":"true",//Whether to display the response example in the document, the default is true.
107108
"ignoreRequestParams":[ //The request parameter object will be discarded when generating the document.@since 1.9.2

README_CN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ subprojects{
9696
"allInOneDocFileName":"index.html",//自定义设置输出文档名称, @since smart-doc 1.9.0
9797
"requestExample":"true",//是否将请求示例展示在文档中,默认true,@since smart-doc 1.9.0
9898
"responseExample":"true",//是否将响应示例展示在文档中,默认为true,@since smart-doc 1.9.0
99+
"displayActualType":false,//配置true会在注释栏自动显示泛型的真实类型短类名,@since 1.9.6
99100
"ignoreRequestParams":[ //忽略请求参数对象,把不想生成文档的参数对象屏蔽掉,@since smart-doc 1.9.2
100101
"org.springframework.ui.ModelMap"
101102
],

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
}
1616

1717
group 'com.github.shalousun'
18-
version '1.1.9'
18+
version '1.2.0'
1919

2020
sourceCompatibility = 1.8
2121

@@ -26,7 +26,7 @@ repositories {
2626

2727
dependencies {
2828
testCompile group: 'junit', name: 'junit', version: '4.13'
29-
compile 'com.github.shalousun:smart-doc:1.9.5'
29+
compile 'com.github.shalousun:smart-doc:1.9.6'
3030
}
3131
tasks.withType(JavaCompile) {
3232
options.encoding = "UTF-8"

0 commit comments

Comments
 (0)