Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed Aug 17, 2021
1 parent f544d0d commit 7816eb1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 0 additions & 1 deletion arch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ android {
dependencies {
api "androidx.appcompat:appcompat:$appcompatVersion"
api "androidx.fragment:fragment:1.3.6"

api project(':arch-annotation')
compileOnly project(':qmui')
testImplementation "junit:junit:$junitVersion"
Expand Down
6 changes: 2 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ android.useAndroidX=true
android.enableJetifier=true

GROUP=com.qmuiteam
QMUI_VERSION=2.0.0-alpha13
QMUI_ARCH_VERSION=2.0.0-alpha13
QMUI_LINT_VERSION = 1.1.0
QMUI_SKIN_MAKER_VERSION = 0.0.1
QMUI_VERSION=2.0.1
QMUI_ARCH_VERSION=2.0.1
QMUI_TYPE_VERSION = 0.0.13
POM_GIT_URL=https://github.com/Tencent/QMUI_Android/
POM_SITE_URL=https://qmuiteam.com/android
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public class QDUpgradeManager {
public static final int VERSION_2_0_0_alpha9 = -2009;
public static final int VERSION_2_0_0_alpha10 = -2010;
public static final int VERSION_2_0_0_alpha11 = -2011;
private static final int sCurrentVersion = VERSION_2_0_0_alpha11;
public static final int VERSION_2_0_1 = 201;
private static final int sCurrentVersion = VERSION_2_0_1;
private static QDUpgradeManager sQDUpgradeManager = null;
private UpgradeTipTask mUpgradeTipTask;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ private void appendBlockSpace(Context context, SpannableStringBuilder builder) {

public CharSequence getUpgradeWord(final Activity activity) {
SpannableStringBuilder text = new SpannableStringBuilder();
if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha11){
if(mNewVersion == QDUpgradeManager.VERSION_2_0_1){
text.append("1. Published to MavenCentral.\n");
text.append("2. Updated dep versions.\n");
}else if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha11){
text.append("1. Feature: Added a new widget: QMUINavFragment.\n");
text.append("2. Remove LazyLifecycle, use maxLifecycle for replacement.\n");
text.append("3. Some bug fixes.\n");
Expand Down

0 comments on commit 7816eb1

Please sign in to comment.