diff --git a/README.md b/README.md
index 5e7d75f..eaffefc 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.1.1
+ 1.2.0
```
### Gradle
```
-'com.ea.async:ea-async:1.1.1'
+'com.ea.async:ea-async:1.2.0'
```
### Instrumenting your code
#### Option 1 - JVM parameter
-Start your application with an extra JVM parameter: `-javaagent:ea-async-1.1.1.jar`
+Start your application with an extra JVM parameter: `-javaagent:ea-async-1.2.0.jar`
```
- java -javaagent:ea-async-1.1.1.jar -cp your_claspath YourMainClass args...
+ java -javaagent:ea-async-1.2.0.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.1.1.jar is a runnable jar that can pre-instrument your files.
+The ea-async-1.2.0.jar is a runnable jar that can pre-instrument your files.
Usage:
```bash
-java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.1.1.jar classDirectory
+java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.2.0.jar classDirectory
```
Example:
```bash
-java -cp guava.jar;commons-lang.jar -jar ea-async-1.1.1.jar target/classes
+java -cp guava.jar;commons-lang.jar -jar ea-async-1.2.0.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.1.1
+ 1.2.0
diff --git a/async/pom.xml b/async/pom.xml
index 92dc0e1..5cd658e 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.1.2-SNAPSHOT
+ 1.2.0
..
ea-async
diff --git a/maven-plugin/README.md b/maven-plugin/README.md
index 863b571..e547750 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.1.1
+ 1.2.0
```
@@ -36,7 +36,7 @@ Add the build plugin that will instrument the uses of `await`
com.ea.async
ea-async-maven-plugin
- 1.1.1
+ 1.2.0
diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml
index 3cfa945..559d268 100644
--- a/maven-plugin/pom.xml
+++ b/maven-plugin/pom.xml
@@ -31,7 +31,7 @@
com.ea.async
ea-async-parent
- 1.1.2-SNAPSHOT
+ 1.2.0
..
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 e93e63e..60fd0e9 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.1.2-SNAPSHOT
+ 1.2.0
../../../..
com.ea.async.samples
@@ -67,7 +67,7 @@
com.ea.async
ea-async-maven-plugin
- 1.1.2-SNAPSHOT
+ 1.2.0
@@ -90,7 +90,7 @@
com.ea.async
ea-async
- 1.1.2-SNAPSHOT
+ 1.2.0
diff --git a/pom.xml b/pom.xml
index 3bf6e79..23ad36f 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.1.2-SNAPSHOT
+ 1.2.0
pom
EA Async Parent
EA Async implements async-await methods in the JVM. It allows programmers to write asynchronous code in