Skip to content

Commit a23b951

Browse files
authored
Update dependencies, bump version (#487)
* update deps * add change log * update version number * update build tools version * fix build tools version
1 parent 73e9049 commit a23b951

File tree

8 files changed

+16
-6
lines changed

8 files changed

+16
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ matrix:
66
- tools
77
- platform-tools
88
- tools
9-
- build-tools-29.0.2
9+
- build-tools-29.0.3
1010
- android-29
1111
licenses:
1212
- 'android-sdk-preview-license-.+'

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Release v20.5.1
2+
3+
* MISC: Improve logging and messaging (#482)
4+
* NEW: Untie WebSocket implementation from Android (#481)
5+
* FIX: Fix wildcard option check in Subscribe message (#477)
6+
7+
---
8+
19
# Release v20.2.1
210

311
* MISC: XBR Code cleaning (#473)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BUILD_DATE=$(shell date -u +"%Y-%m-%d")
2-
AUTOBAHN_JAVA_VERSION='20.2.1'
2+
AUTOBAHN_JAVA_VERSION='20.6.1'
33
AUTOBAHN_JAVA_VCS_REF='unknown'
44

55
default:

autobahn/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ bintray {
7676
if (project.IS_ANDROID) {
7777
android {
7878
compileSdkVersion 29
79-
buildToolsVersion '29.0.2'
79+
buildToolsVersion '29.0.3'
8080
defaultConfig {
8181
minSdkVersion 24
8282
targetSdkVersion 29

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ buildscript {
2525
// Android specific dependencies.
2626
if (project.properties.get('buildPlatform', 'android') == 'android') {
2727
dependencies {
28-
classpath 'com.android.tools.build:gradle:3.5.3'
28+
classpath 'com.android.tools.build:gradle:4.0.0'
2929
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
3030
}
3131
}

demo-gallery/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: project.IS_ANDROID ? project.PLUGIN_ANDROID_APP: project.PLUGIN_JA
33
if (plugins.hasPlugin(project.PLUGIN_ANDROID_APP)) {
44
android {
55
compileSdkVersion 29
6-
buildToolsVersion '29.0.2'
6+
buildToolsVersion '29.0.3'
77

88
defaultConfig {
99
minSdkVersion 24
@@ -35,6 +35,7 @@ if (plugins.hasPlugin(project.PLUGIN_ANDROID_APP)) {
3535
exclude 'META-INF/spring.schemas'
3636
exclude 'META-INF/license.txt'
3737
exclude 'META-INF/notice.txt'
38+
exclude 'META-INF/INDEX.list'
3839
}
3940
}
4041

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
android.useAndroidX=true

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-all.zip

0 commit comments

Comments
 (0)