Skip to content

Commit c5e93af

Browse files
author
Thom Chiovoloni
authored
Release version 0.8.2
2 parents 445abc6 + 9e3d645 commit c5e93af

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.8.2
2+
3+
- Avoid passing `--target` to cargo for the default target.
4+
- The `exec` callback is now invoked as late as possible.
5+
- The `CARGO_TARGET_DIR` environment variable should now be respected, if it is set.
6+
- Various parts of the plugin's documentation have been improved.
7+
18
# 0.8.1
29

310
- Added `extraCargoBuildArguments`.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
}
2121
}
2222
dependencies {
23-
classpath 'gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.1'
23+
classpath 'gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.2'
2424
}
2525
}
2626
```

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext.kotlin_version = '1.2.41'
3-
ext.plugin_version = '0.8.1'
3+
ext.plugin_version = '0.8.2'
44

55
repositories {
66
google()

plugin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'com.gradle.plugin-publish' version '0.9.10'
2+
id 'com.gradle.plugin-publish' version '0.9.10'
33
}
44

55
apply plugin: "java-gradle-plugin"
@@ -47,8 +47,8 @@ compileTestKotlin {
4747
kotlinOptions.jvmTarget = "1.8"
4848
}
4949

50-
pluginBundle {
51-
website = 'https://github.com/ncalexan/rust-android-gradle'
50+
pluginBundle {
51+
website = 'https://github.com/ncalexan/rust-android-gradle'
5252
vcsUrl = 'https://github.com/ncalexan/rust-android-gradle.git'
5353

5454
plugins {

0 commit comments

Comments
 (0)