Skip to content

Commit

Permalink
1.3.0-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
galenlin committed Oct 27, 2017
1 parent 08013c9 commit a7175ad
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 14 deletions.
7 changes: 7 additions & 0 deletions Android/DevSample/buildSrc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.3.0-beta3 (2017-10-28)

Bugfixes:

- 修正插件、宿主混淆时找不到 `DataBinding` 相关类与方法的问题
- 修正宿主混淆后运行时找不到插件 `DataBinderMapper` 的问题

## 1.3.0-alpha1 (2017-10-16)

版本同步
Expand Down
2 changes: 1 addition & 1 deletion Android/DevSample/buildSrc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ gradle-small-plugin是一个gradle插件,用来打包安卓组件包。
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'net.wequick.tools.build:gradle-small:1.3.0-alpha1'
classpath 'net.wequick.tools.build:gradle-small:1.3.0-beta3'
}
}
Expand Down
2 changes: 1 addition & 1 deletion Android/DevSample/buildSrc/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
org.gradle.daemon=true

group=net.wequick.tools.build
version=1.3.0-alpha1
version=1.3.0-beta3
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ public class RootExtension extends BaseExtension {
private static final VersionNumber REQUIRED_AAR_REVISION = VersionNumber.parse(REQUIRED_AAR_VERSION)

/** The built version of gradle-small plugin */
public static final String PLUGIN_VERSION = '1.3.0-alpha1'
public static final String PLUGIN_VERSION = '1.3.0-beta3'
public static final VersionNumber PLUGIN_REVISION = VersionNumber.parse(PLUGIN_VERSION)

private static final String BINDING_AAR_VERSION = '1.1.0'
private static final String BINDING_AAR_VERSION = '1.1.2'

/**
* Version of aar net.wequick.small:small
Expand Down
6 changes: 6 additions & 0 deletions Android/DevSample/small-databinding/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.1.2 (2017-10-22)

Bugfixes:

- 修正混淆时找不到方法的问题

## 1.1.0 (2017-06-10)

Features:
Expand Down
2 changes: 1 addition & 1 deletion Android/DevSample/small-databinding/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# module info
group=small.support
archivesBaseName=databinding
version=1.1.0
version=1.1.2

# bintray info
tags=small,databinding,android,plugin
Expand Down
4 changes: 4 additions & 0 deletions Android/DevSample/small/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.3.0-beta3 (2017-10-28)

版本同步

## 1.3.0-alpha1 (2017-10-16)

Features:
Expand Down
2 changes: 1 addition & 1 deletion Android/DevSample/small/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=net.wequick.small
version=1.3.0-alpha1
version=1.3.0-beta3
4 changes: 2 additions & 2 deletions Android/GETTING-STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'net.wequick.tools.build:gradle-small:1.3.0-alpha1'
classpath 'net.wequick.tools.build:gradle-small:1.3.0-beta3'
}
}
Expand All @@ -47,7 +47,7 @@ apply plugin: 'net.wequick.small'

```groovy
small {
aarVersion = '1.3.0-alpha1'
aarVersion = '1.3.0-beta3'
}
```

Expand Down
4 changes: 2 additions & 2 deletions Android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
```groovy
buildscript {
dependencies {
classpath 'net.wequick.tools.build:gradle-small:1.3.0-alpha1'
classpath 'net.wequick.tools.build:gradle-small:1.3.0-beta3'
}
}
apply plugin: 'net.wequick.small'
small {
aarVersion = '1.3.0-alpha1'
aarVersion = '1.3.0-beta3'
}
```

Expand Down
3 changes: 1 addition & 2 deletions Android/Sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'net.wequick.tools.build:gradle-small:1.3.0-alpha1'
classpath 'net.wequick.tools.build:gradle-small:1.3.0-beta3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -27,7 +27,6 @@ task clean(type: Delete) {
apply plugin: 'net.wequick.small'

small {
aarVersion = "1.3.0-alpha1"
buildToAssets = false
android {
compileSdkVersion = 26
Expand Down
4 changes: 2 additions & 2 deletions Android/templates/activities/SmallLauncher/globals.xml.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<global id="assetsOut" value="./app/src/main/assets" />
<global id="mavenUrl" value="mavenCentral" />
<global id="copyGradleSupported" type="boolean" value="${(compareVersions(gradlePluginVersion, '2.0') < 0)?string}" />
<global id="smallPluginVersion" value="1.3.0-alpha1" />
<global id="smallAarVersion" value="1.3.0-alpha1" />
<global id="smallPluginVersion" value="1.3.0-beta3" />
<global id="smallAarVersion" value="1.3.0-beta3" />
</globals>

0 comments on commit a7175ad

Please sign in to comment.