diff --git a/README.md b/README.md index f573098..42fcbbc 100644 --- a/README.md +++ b/README.md @@ -117,23 +117,23 @@ The only requirement to use EA Async is that must be used only inside methods th com.ea.async ea-async - 1.0.2 + 1.0.5 ``` ### Gradle ``` -'com.ea.async:ea-async:1.0.2' +'com.ea.async:ea-async:1.0.5' ``` ### Instrumenting your code #### Option 1 - JVM parameter -Start your application with an extra JVM parameter: `-javaagent:ea-async-1.0.2.jar` +Start your application with an extra JVM parameter: `-javaagent:ea-async-1.0.5.jar` ``` - java -javaagent:ea-async-1.0.2.jar -cp your_claspath YourMainClass args... + java -javaagent:ea-async-1.0.5.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. @@ -151,18 +151,18 @@ It might interfere with JVM debugging. This alternative is present as a fallback #### Option 3 - Run instrumentation tool -The ea-async-1.0.2.jar is a runnable jar that can pre-instrument your files. +The ea-async-1.0.5.jar is a runnable jar that can pre-instrument your files. Usage: ```bash -java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.0.2.jar classDirectory +java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.0.5.jar classDirectory ``` Example: ```bash -java -cp guava.jar;commons-lang.jar -jar ea-async-1.0.2.jar target/classes +java -cp guava.jar;commons-lang.jar -jar ea-async-1.0.5.jar target/classes ``` After that all the files in target/classes will have been instrumented. @@ -185,7 +185,7 @@ This is the best option for libraries and maven projects. com.ea.async ea-async-maven-plugin - 1.0.2 + 1.0.5 diff --git a/async/pom.xml b/async/pom.xml index 97ce5fd..375976a 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.4-SNAPSHOT + 1.0.5 .. ea-async diff --git a/maven-plugin/README.md b/maven-plugin/README.md index 485dc65..3513189 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.2 + 1.0.5 ``` @@ -36,7 +36,7 @@ Add the build plugin that will instrument the uses of `await` com.ea.async ea-async-maven-plugin - 1.0.2 + 1.0.5 diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index d9e95c4..b456b8c 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -31,7 +31,7 @@ com.ea.async ea-async-parent - 1.0.4-SNAPSHOT + 1.0.5 .. 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 13aeba1..4380dd7 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.4-SNAPSHOT + 1.0.5 ../../../.. com.ea.async.samples @@ -67,7 +67,7 @@ com.ea.async ea-async-maven-plugin - 1.0.4-SNAPSHOT + 1.0.5 @@ -90,7 +90,7 @@ com.ea.async ea-async - 1.0.4-SNAPSHOT + 1.0.5 diff --git a/pom.xml b/pom.xml index 9ff62e2..d2c2d69 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.4-SNAPSHOT + 1.0.5 pom EA Async Parent EA Async implements async-await methods in the JVM. It allows programmers to write asynchronous code in