diff --git a/README.md b/README.md index 77dd178..7450508 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,8 @@ When you need to use smart-doc to generate more API document information, you ca }], "revisionLogs": [{// Set document change records, no need to set "version": "1.0", // Document version number + "revisionTime": "2020-12-31 10:30", //revision time + "author": "author", // Document change author "status": "update", // Change operation status, generally: create, update, etc. "remarks": "desc" // Change description }], diff --git a/README_CN.md b/README_CN.md index 3a524d3..f7df306 100644 --- a/README_CN.md +++ b/README_CN.md @@ -129,6 +129,7 @@ subprojects{ }], "revisionLogs": [{ //设置文档变更记录,没有需求可以不设置 "version": "1.0", //文档版本号 + "revisionTime":"2020-12-31 10:30",//文档修订时间 "status": "update", //变更操作状态,一般为:创建、更新等 "author": "author", //文档变更作者 "remarks": "desc" //变更描述 diff --git a/build.gradle b/build.gradle index ef6c2b5..effc1ee 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ plugins { } group 'com.github.shalousun' -version '2.0.2' +version '2.0.3' sourceCompatibility = 1.8 @@ -31,7 +31,7 @@ repositories { dependencies { testCompile group: 'junit', name: 'junit', version: '4.13.1' - compile 'com.github.shalousun:smart-doc:2.0.2' + compile 'com.github.shalousun:smart-doc:2.0.3' } tasks.withType(JavaCompile) { options.encoding = "UTF-8"