From b01e17e36f022c21d8bd032ecb25384dd32e578b Mon Sep 17 00:00:00 2001 From: Blankj <625783482@qq.com> Date: Thu, 28 Nov 2019 00:58:23 +0800 Subject: [PATCH] see 11/28 log --- CHANGELOG.md | 5 ++++- buildSrc/src/main/groovy/Config.groovy | 2 +- buildSrc/src/main/groovy/TaskDurationUtils.groovy | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b68339099..30c8d44b10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ +* `19/11/28` [add] Publish v1.26.0. +* `19/11/27` [add] Shadow demo. +* `19/11/26` [add] MVP demo. * `19/11/22` [fix] Adapt the project for Gradle version of 6.0. * `19/10/30` [add] Publish bus plugin v2.3. Publish api plugin v1.1. * `19/10/24` [upd] Demo's UI. -* `19/10/22` [add] NotificationUtils. +* `19/10/22` [add] NotificationUtils and demo. * `19/10/20` [add] UiMessageUtils. * `19/09/20` [add] ShadowUtils. * `19/08/27` [add] DebugUtils. diff --git a/buildSrc/src/main/groovy/Config.groovy b/buildSrc/src/main/groovy/Config.groovy index 6588ceb958..895fe29a3e 100644 --- a/buildSrc/src/main/groovy/Config.groovy +++ b/buildSrc/src/main/groovy/Config.groovy @@ -15,7 +15,7 @@ class Config { static minSdkVersion = 14 static targetSdkVersion = 28 static versionCode = 1_026_000 - static versionName = '1.26.0-alpha1'// E.g. 1.9.72 => 1,009,072 + static versionName = '1.26.0'// E.g. 1.9.72 => 1,009,072 // lib version static kotlin_version = '1.3.50' diff --git a/buildSrc/src/main/groovy/TaskDurationUtils.groovy b/buildSrc/src/main/groovy/TaskDurationUtils.groovy index da9cb3e4e9..48b2d2b6cc 100644 --- a/buildSrc/src/main/groovy/TaskDurationUtils.groovy +++ b/buildSrc/src/main/groovy/TaskDurationUtils.groovy @@ -69,7 +69,7 @@ class TaskDurationUtils { sb.append(String.format("%7sms %s\n", it.exeDuration, it.task.path)) } def content = sb.toString() -// GLog.d(content) + GLog.d(content) File file = new File(grd.rootProject.buildDir.getAbsolutePath(), "build_time_records_" + new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss").format(new Date()) + ".txt") file.getParentFile().mkdirs()