Skip to content

Commit 0f6a954

Browse files
committed
Version 1.1.1
1 parent c062da8 commit 0f6a954

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -117,23 +117,23 @@ The only requirement to use EA Async is that must be used only inside methods th
117117
<dependency>
118118
<groupId>com.ea.async</groupId>
119119
<artifactId>ea-async</artifactId>
120-
<version>1.1.0</version>
120+
<version>1.1.1</version>
121121
</dependency>
122122
```
123123

124124
### Gradle
125125

126126
```
127-
'com.ea.async:ea-async:1.1.0'
127+
'com.ea.async:ea-async:1.1.1'
128128
```
129129

130130
### Instrumenting your code
131131

132132
#### Option 1 - JVM parameter
133133

134-
Start your application with an extra JVM parameter: `-javaagent:ea-async-1.1.0.jar`
134+
Start your application with an extra JVM parameter: `-javaagent:ea-async-1.1.1.jar`
135135
```
136-
java -javaagent:ea-async-1.1.0.jar -cp your_claspath YourMainClass args...
136+
java -javaagent:ea-async-1.1.1.jar -cp your_claspath YourMainClass args...
137137
```
138138

139139
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
151151

152152
#### Option 3 - Run instrumentation tool
153153

154-
The ea-async-1.1.0.jar is a runnable jar that can pre-instrument your files.
154+
The ea-async-1.1.1.jar is a runnable jar that can pre-instrument your files.
155155

156156
Usage:
157157

158158
```bash
159-
java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.1.0.jar classDirectory
159+
java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.1.1.jar classDirectory
160160
```
161161

162162
Example:
163163

164164
```bash
165-
java -cp guava.jar;commons-lang.jar -jar ea-async-1.1.0.jar target/classes
165+
java -cp guava.jar;commons-lang.jar -jar ea-async-1.1.1.jar target/classes
166166
```
167167

168168
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.
185185
<plugin>
186186
<groupId>com.ea.async</groupId>
187187
<artifactId>ea-async-maven-plugin</artifactId>
188-
<version>1.1.0</version>
188+
<version>1.1.1</version>
189189
<executions>
190190
<execution>
191191
<goals>

async/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3333
<parent>
3434
<groupId>com.ea.async</groupId>
3535
<artifactId>ea-async-parent</artifactId>
36-
<version>1.1.1-SNAPSHOT</version>
36+
<version>1.1.1</version>
3737
<relativePath>..</relativePath>
3838
</parent>
3939
<artifactId>ea-async</artifactId>

maven-plugin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Add the EA Async dependency:
2424
<dependency>
2525
<groupId>com.ea.async</groupId>
2626
<artifactId>ea-async</artifactId>
27-
<version>1.1.0</version>
27+
<version>1.1.1</version>
2828
</dependency>
2929
```
3030

@@ -36,7 +36,7 @@ Add the build plugin that will instrument the uses of `await`
3636
<plugin>
3737
<groupId>com.ea.async</groupId>
3838
<artifactId>ea-async-maven-plugin</artifactId>
39-
<version>1.1.0</version>
39+
<version>1.1.1</version>
4040
<executions>
4141
<execution>
4242
<goals>

maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<parent>
3232
<groupId>com.ea.async</groupId>
3333
<artifactId>ea-async-parent</artifactId>
34-
<version>1.1.1-SNAPSHOT</version>
34+
<version>1.1.1</version>
3535
<relativePath>..</relativePath>
3636
</parent>
3737
<groupId>com.ea.async</groupId>

maven-plugin/src/test/project-to-test/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<parent>
3232
<groupId>com.ea.async</groupId>
3333
<artifactId>ea-async-parent</artifactId>
34-
<version>1.1.1-SNAPSHOT</version>
34+
<version>1.1.1</version>
3535
<relativePath>../../../..</relativePath>
3636
</parent>
3737
<groupId>com.ea.async.samples</groupId>
@@ -67,7 +67,7 @@
6767
<plugin>
6868
<groupId>com.ea.async</groupId>
6969
<artifactId>ea-async-maven-plugin</artifactId>
70-
<version>1.1.1-SNAPSHOT</version>
70+
<version>1.1.1</version>
7171
<executions>
7272
<execution>
7373
<goals>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>com.ea.async</groupId>
9292
<artifactId>ea-async</artifactId>
93-
<version>1.1.1-SNAPSHOT</version>
93+
<version>1.1.1</version>
9494
</dependency>
9595

9696
<dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929
<modelVersion>4.0.0</modelVersion>
3030
<groupId>com.ea.async</groupId>
3131
<artifactId>ea-async-parent</artifactId>
32-
<version>1.1.1-SNAPSHOT</version>
32+
<version>1.1.1</version>
3333
<packaging>pom</packaging>
3434
<name>EA Async Parent</name>
3535
<description>EA Async implements async-await methods in the JVM. It allows programmers to write asynchronous code in

0 commit comments

Comments
 (0)