Skip to content

Commit 1bb80fd

Browse files
committed
bump to v1.1.4
1 parent 1051519 commit 1bb80fd

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

Diff for: README.md

+26
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ for updates, or [StackOverflow](http://stackoverflow.com/questions/ask) or the [
55

66
This repository contains the source for ServiceStack plugins for the leading Android Studio, IntelliJ and Eclipse Java IDE's providing Java developers a highly productive development experience for consuming Typed ServiceStack Services by leveraging [Add ServiceStack Reference](https://github.com/ServiceStack/ServiceStack/wiki/Add-ServiceStack-Reference) directly within their IDE!
77

8+
### v1.1.4 Changes
9+
10+
Added new ServiceClient APIs:
11+
12+
```java
13+
<TResponse> TResponse postFileWithRequest(IReturn<TResponse> request, FileUpload file);
14+
<TResponse> TResponse postFileWithRequest(Object request, FileUpload file, Object responseType);
15+
<TResponse> TResponse postFileWithRequest(String path, Object request, FileUpload file, Object responseType);
16+
17+
<TResponse> TResponse postFilesWithRequest(IReturn<TResponse> request, FileUpload[] files);
18+
<TResponse> TResponse postFilesWithRequest(Object request, FileUpload[] files, Object responseType);
19+
<TResponse> TResponse postFilesWithRequest(String path, Object request, FileUpload[] files, Object responseType);
20+
```
21+
22+
Added new AsyncServiceClient APIs:
23+
24+
```java
25+
<T> void postFileWithRequestAsync(IReturn<T> request, FileUpload file, final AsyncResult<T> asyncResult);
26+
<T> void postFileWithRequestAsync(Object request, FileUpload file, Object responseType, final AsyncResult<T> asyncResult);
27+
<T> void postFileWithRequestAsync(String path, Object request, FileUpload file, Object responseType, final AsyncResult<T> asyncResult);
28+
29+
<T> void postFilesWithRequestAsync(IReturn<T> request, FileUpload[] files, final AsyncResult<T> asyncResult);
30+
<T> void postFilesWithRequestAsync(Object request, FileUpload[] files, Object responseType, final AsyncResult<T> asyncResult);
31+
<T> void postFilesWithRequestAsync(String path, Object request, FileUpload[] files, Object responseType, final AsyncResult<T> asyncResult);
32+
```
33+
834
### v1.1.0 Changes
935

1036
Switched to use `/api` pre-defined route by default, revert to legacy `/json/reply` pre-defined route with:

Diff for: src/AndroidClient/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'maven-publish'
44
apply plugin: 'signing'
55

66
// Define the version and group for the Maven package
7-
version = "1.1.3"
7+
version = "1.1.4"
88
group = "net.servicestack"
99

1010
if (project.hasProperty('versionSuffix')) {

Diff for: src/AndroidClient/client/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'maven-publish'
44
apply plugin: 'signing'
55

66
// Define the version and group for the Maven package
7-
version = "1.1.3"
7+
version = "1.1.4"
88
group = "net.servicestack"
99

1010
if (project.hasProperty('versionSuffix')) {

Diff for: src/AndroidClient/client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>net.servicestack</groupId>
66
<artifactId>client</artifactId>
7-
<version>1.0.49</version>
7+
<version>1.1.4</version>
88
<name>ServiceStack.Client</name>
99
<description>A client library to call your ServiceStack webservices.</description>
1010
<url>https://github.com/ServiceStack/ServiceStack.Java</url>

0 commit comments

Comments
 (0)