From 43e60721a87b2bf3f08eec7925fcb9ea8dd635c7 Mon Sep 17 00:00:00 2001 From: Joe Hegarty Date: Tue, 5 Jan 2016 10:32:03 -0700 Subject: [PATCH] Version 1.0.1 --- README.md | 16 ++++++++-------- async/pom.xml | 2 +- maven-plugin/README.md | 4 ++-- maven-plugin/pom.xml | 2 +- maven-plugin/src/test/project-to-test/pom.xml | 6 +++--- pom.xml | 2 +- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 7d4c548..64fa92c 100644 --- a/README.md +++ b/README.md @@ -118,23 +118,23 @@ The only requirement to use EA Async is that must be used only inside methods th com.ea.async ea-async - 1.0.0 + 1.0.1 ``` ### Gradle ``` -'com.ea.async:ea-async:1.0.0' +'com.ea.async:ea-async:1.0.1' ``` ### Instrumenting your code #### Option 1 - JVM parameter -Start your application with an extra JVM parameter: `-javaagent:ea-async-1.0.0.jar` +Start your application with an extra JVM parameter: `-javaagent:ea-async-1.0.1.jar` ``` - java -javaagent:ea-async-1.0.0.jar -cp your_claspath YourMainClass args... + java -javaagent:ea-async-1.0.1.jar -cp your_claspath YourMainClass args... ``` It's recommended to add this as a default option to launchers in intellij projects that use ea-async. @@ -152,18 +152,18 @@ It might interfere with jvm debugging. This alternative is present as a fallback #### Option 3 - Run instrumentation tool -The ea-async-1.0.0.jar is a runnable jar that can pre-instrument your files (since version 0.9.1) +The ea-async-1.0.1.jar is a runnable jar that can pre-instrument your files (since version 0.9.1) Usage: ```bash -java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.0.0.jar classDirectory +java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.0.1.jar classDirectory ``` Example: ```bash -java -cp guava.jar;commons-lang.jar -jar ea-async-1.0.0.jar target/classes +java -cp guava.jar;commons-lang.jar -jar ea-async-1.0.1.jar target/classes ``` After that all the files in target/classes will have been instrumented. @@ -186,7 +186,7 @@ This is the best option for libraries and maven projects. com.ea.async ea-async-maven-plugin - 1.0.0 + 1.0.1 diff --git a/async/pom.xml b/async/pom.xml index 3214eb2..5d767ab 100644 --- a/async/pom.xml +++ b/async/pom.xml @@ -33,7 +33,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. com.ea.async ea-async-parent - 1.0.1-SNAPSHOT + 1.0.1 .. ea-async diff --git a/maven-plugin/README.md b/maven-plugin/README.md index 83c2688..a8cf1c8 100644 --- a/maven-plugin/README.md +++ b/maven-plugin/README.md @@ -24,7 +24,7 @@ Add the EA Async dependency: com.ea.async ea-async - 1.0.0 + 1.0.1 ``` @@ -36,7 +36,7 @@ Add the build plugin that will instrument the uses of `await` com.ea.async ea-async-maven-plugin - 1.0.0 + 1.0.1 diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 80d3819..d465c1c 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -31,7 +31,7 @@ com.ea.async ea-async-parent - 1.0.1-SNAPSHOT + 1.0.1 .. com.ea.async diff --git a/maven-plugin/src/test/project-to-test/pom.xml b/maven-plugin/src/test/project-to-test/pom.xml index 4a150c9..44e4ba9 100644 --- a/maven-plugin/src/test/project-to-test/pom.xml +++ b/maven-plugin/src/test/project-to-test/pom.xml @@ -31,7 +31,7 @@ com.ea.async ea-async-parent - 1.0.1-SNAPSHOT + 1.0.1 ../../../.. com.ea.async.samples @@ -67,7 +67,7 @@ com.ea.async ea-async-maven-plugin - 1.0.1-SNAPSHOT + 1.0.1 @@ -90,7 +90,7 @@ com.ea.async ea-async - 1.0.1-SNAPSHOT + 1.0.1 diff --git a/pom.xml b/pom.xml index c937a1d..20cc4a1 100644 --- a/pom.xml +++ b/pom.xml @@ -29,7 +29,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 4.0.0 com.ea.async ea-async-parent - 1.0.1-SNAPSHOT + 1.0.1 pom EA Async Parent EA Async implements async-await methods in the JVM. It allows programmers to write asynchronous code in