Skip to content

Commit 6a9c61e

Browse files
committed
1.2.0-alpha5
1 parent 69973b5 commit 6a9c61e

File tree

10 files changed

+22
-11
lines changed

10 files changed

+22
-11
lines changed

Android/DevSample/buildSrc/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.2.0-alpha5 (2017-06-11)
2+
3+
Bugfixes:
4+
5+
- 修正全局 `supportVersion` 导致的 `multidex` 依赖无法解析问题 (#456)
6+
- 修正 `cleanLib` 没有 clean 宿主分身的问题
7+
18
## 1.2.0-alpha4 (2017-06-06)
29

310
Bugfixes:

Android/DevSample/buildSrc/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ gradle-small-plugin是一个gradle插件,用来打包安卓组件包。
1212
}
1313
dependencies {
1414
classpath 'com.android.tools.build:gradle:1.5.0'
15-
classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha4'
15+
classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha5'
1616
}
1717
}
1818

Android/DevSample/buildSrc/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
org.gradle.daemon=true
2121

2222
group=net.wequick.tools.build
23-
version=1.2.0-alpha4
23+
version=1.2.0-alpha5

Android/DevSample/buildSrc/src/main/groovy/net/wequick/gradle/RootExtension.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class RootExtension extends BaseExtension {
3535
private static final VersionNumber REQUIRED_AAR_REVISION = VersionNumber.parse(REQUIRED_AAR_VERSION)
3636

3737
/** The built version of gradle-small plugin */
38-
public static final String PLUGIN_VERSION = '1.2.0-alpha4'
38+
public static final String PLUGIN_VERSION = '1.2.0-alpha5'
3939
public static final VersionNumber PLUGIN_REVISION = VersionNumber.parse(PLUGIN_VERSION)
4040

4141
/**

Android/DevSample/small/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.2.0-alpha5 (2017-06-11)
2+
3+
版本同步
4+
15
## 1.2.0-alpha4 (2017-06-06)
26

37
Performance:
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=net.wequick.small
2-
version=1.2.0-alpha4
2+
version=1.2.0-alpha5

Android/GETTING-STARTED.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ buildscript {
3232
}
3333
dependencies {
3434
classpath 'com.android.tools.build:gradle:1.3.0'
35-
classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha4'
35+
classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha5'
3636
}
3737
}
3838
@@ -47,7 +47,7 @@ apply plugin: 'net.wequick.small'
4747

4848
```groovy
4949
small {
50-
aarVersion = '1.2.0-alpha4'
50+
aarVersion = '1.2.0-alpha5'
5151
}
5252
```
5353

Android/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
```groovy
2727
buildscript {
2828
dependencies {
29-
classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha4'
29+
classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha5'
3030
}
3131
}
3232
3333
apply plugin: 'net.wequick.small'
3434
3535
small {
36-
aarVersion = '1.2.0-alpha4'
36+
aarVersion = '1.2.0-alpha5'
3737
}
3838
```
3939

Android/Sample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
}
88
dependencies {
99
classpath 'com.android.tools.build:gradle:2.3.0'
10-
classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha4'
10+
classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha5'
1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files
1313
}

Android/templates/activities/SmallLauncher/globals.xml.ftl

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
<global id="assetsOut" value="./app/src/main/assets" />
66
<global id="mavenUrl" value="mavenCentral" />
77
<global id="copyGradleSupported" type="boolean" value="${(compareVersions(gradlePluginVersion, '2.0') < 0)?string}" />
8-
<global id="smallPluginVersion" value="1.2.0-alpha4" />
9-
<global id="smallAarVersion" value="1.2.0-alpha4" />
8+
<global id="smallPluginVersion" value="1.2.0-alpha5" />
9+
<global id="smallAarVersion" value="1.2.0-alpha5" />
1010
</globals>

0 commit comments

Comments
 (0)