Skip to content

Commit

Permalink
release 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
yp205390 committed Jul 18, 2019
1 parent 886e8c1 commit 05cb250
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#Change Log

## Version 1.0.5
*2019-07-18
* Fix: support latest gradle version.

## Version 1.0.4
*2018-01-25
* Fix: in rare case, lancet generate illegal bytecode because of multi-thread.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Firstly, add following code in root **build.gradle** of your project.

```groovy
dependencies{
classpath 'me.ele:lancet-plugin:1.0.4'
classpath 'me.ele:lancet-plugin:1.0.5'
}
```
And then, add following code in your **application module's build.gradle**
Expand All @@ -28,7 +28,7 @@ And then, add following code in your **application module's build.gradle**
apply plugin: 'me.ele.lancet'
dependencies {
provided 'me.ele:lancet-base:1.0.4'
provided 'me.ele:lancet-base:1.0.5'
}
```

Expand Down
4 changes: 2 additions & 2 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ Lancet 是一个轻量级Android AOP框架。
在根目录的 `build.gradle` 添加:
```groovy
dependencies{
classpath 'me.ele:lancet-plugin:1.0.4'
classpath 'me.ele:lancet-plugin:1.0.5'
}
```
在 app 目录的'build.gradle' 添加:
```groovy
apply plugin: 'me.ele.lancet'
dependencies {
provided 'me.ele:lancet-base:1.0.4'
provided 'me.ele:lancet-base:1.0.5'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
bintrayKey = properties.getProperty('bintrayKey')
}
lancet_group = 'me.ele'
lancet_version = '1.0.4'
lancet_version = '1.0.5'
//lancet_version = '0.0.1.8-SNAPSHOT'

asm_version = '5.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void testTransform() throws IOException {
e.printStackTrace();
}

Process process = Runtime.getRuntime().exec("./gradlew sample-test:executeTestSampleProduct");
Process process = Runtime.getRuntime().exec("./../gradlew executeTestSampleProduct");
BufferedSource source = Okio.buffer(Okio.source(process.getInputStream()));
String output = source.readUtf8();
System.out.println("\n"+output);
Expand Down

0 comments on commit 05cb250

Please sign in to comment.