Skip to content

Commit d804a12

Browse files
committed
Prep for releasing version 0.9.0.
1 parent e0245cc commit d804a12

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.9.0
2+
3+
- Support multiple Android Gradle Plugin versions. Everything here is based on https://github.com/gradle/android-cache-fix-gradle-plugin; many thanks to that project for paving the way here.
4+
- Allow `module` and `targetDirectory` to be absolute paths. This is used in the test harness at the moment.
5+
16
# 0.8.7
27

38
- Use per-platform API level for selecting toolchain.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
}
2121
}
2222
dependencies {
23-
classpath 'org.mozilla.rust-android-gradle:plugin:0.8.7'
23+
classpath 'org.mozilla.rust-android-gradle:plugin:0.9.0'
2424
}
2525
}
2626
```
@@ -33,7 +33,7 @@ buildscript {
3333
}
3434
3535
plugins {
36-
id "org.mozilla.rust-android-gradle.rust-android" version "0.8.7"
36+
id "org.mozilla.rust-android-gradle.rust-android" version "0.9.0"
3737
}
3838
```
3939

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext.kotlin_version = '1.3.50'
33
ext.agp_version = '4.0.1'
4-
ext.plugin_version = '0.8.7'
4+
ext.plugin_version = '0.9.0'
55

66
repositories {
77
google()

0 commit comments

Comments
 (0)