Skip to content

Commit cec7913

Browse files
committed
Merge branch 'release/1.0.0-RC5'
2 parents 0398958 + 64d52f6 commit cec7913

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed

domino-rest-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-rest</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.0-RC4</version>
8+
<version>1.0.0-RC5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

domino-rest-client/src/main/java/org/dominokit/rest/js/JsResponse.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,9 @@ public String getBodyAsString() {
7676
public ArrayBuffer getResponseArrayBuffer() {
7777
return Js.cast(request.response);
7878
}
79+
80+
/** @return the {@code XMLHttpRequest} associated with this response. */
81+
public XMLHttpRequest getRequest() {
82+
return request;
83+
}
7984
}

domino-rest-jaxrs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.dominokit</groupId>
77
<artifactId>domino-rest</artifactId>
8-
<version>1.0.0-RC4</version>
8+
<version>1.0.0-RC5</version>
99
</parent>
1010

1111
<artifactId>domino-rest-jaxrs</artifactId>

domino-rest-jvm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-rest</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.0-RC4</version>
8+
<version>1.0.0-RC5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

domino-rest-processor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>domino-rest</artifactId>
66
<groupId>org.dominokit</groupId>
7-
<version>1.0.0-RC4</version>
7+
<version>1.0.0-RC5</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010

domino-rest-shared/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-rest</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.0-RC4</version>
8+
<version>1.0.0-RC5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

domino-rest-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-rest</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.0-RC4</version>
8+
<version>1.0.0-RC5</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.dominokit</groupId>
77
<artifactId>domino-rest</artifactId>
8-
<version>1.0.0-RC4</version>
8+
<version>1.0.0-RC5</version>
99
<packaging>pom</packaging>
1010

1111
<name>domino-rest</name>
@@ -70,7 +70,7 @@
7070

7171
<properties>
7272
<snapshot.version>HEAD-SNAPSHOT</snapshot.version>
73-
<next.release.version>1.0.0-RC4</next.release.version>
73+
<next.release.version>1.0.0-RC5</next.release.version>
7474
<maven.compiler.source>1.8</maven.compiler.source>
7575
<maven.compiler.target>1.8</maven.compiler.target>
7676
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)