Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit aa25114

Browse files
authored
Merge pull request #8 from upwork/v1.2.1
v1.2.1
2 parents 40c694a + a104a9c commit aa25114

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 1.2.1
4+
* Applications API has moved from v3 to v4
5+
36
## 1.2.0
47
* Added Messages API (new)
58
* Message API (V1) is now fully depricated

doc/java-upwork-javadoc.zip

14 Bytes
Binary file not shown.
-36.3 KB
Binary file not shown.

lib/java-upwork.jar

-36.3 KB
Binary file not shown.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.Upwork</groupId>
55
<artifactId>api</artifactId>
6-
<version>1.2.0</version>
6+
<version>1.2.1</version>
77
<packaging>jar</packaging>
88
<name>java-upwork</name>
99
<description>JAVA bindings for Upwork API</description>

src/com/Upwork/api/Routers/Hr/Clients/Applications.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
author = "Maksym Novozhylov <[email protected]>",
2929
date = "6/4/2014",
3030
currentRevision = 1,
31-
lastModified = "6/4/2014",
31+
lastModified = "2/15/2014",
3232
lastModifiedBy = "Maksym Novozhylov",
3333
reviewers = {"Yiota Tsakiri"}
3434
)
@@ -50,7 +50,7 @@ public Applications(OAuthClient client) {
5050
* @return object
5151
*/
5252
public JSONObject getList(HashMap<String, String> params) throws JSONException {
53-
return oClient.get("/hr/v3/clients/applications", params);
53+
return oClient.get("/hr/v4/clients/applications", params);
5454
}
5555

5656
/**
@@ -61,7 +61,7 @@ public JSONObject getList(HashMap<String, String> params) throws JSONException {
6161
* @return object
6262
*/
6363
public JSONObject getSpecific(String reference, HashMap<String, String> params) throws JSONException {
64-
return oClient.get("/hr/v3/clients/applications/" + reference, params);
64+
return oClient.get("/hr/v4/clients/applications/" + reference, params);
6565
}
6666

6767
}

src/com/Upwork/api/Routers/Hr/Freelancers/Applications.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
author = "Maksym Novozhylov <[email protected]>",
2929
date = "6/4/2014",
3030
currentRevision = 1,
31-
lastModified = "6/4/2014",
31+
lastModified = "2/15/2014",
3232
lastModifiedBy = "Maksym Novozhylov",
3333
reviewers = {"Yiota Tsakiri"}
3434
)
@@ -51,7 +51,7 @@ public Applications(OAuthClient client) {
5151
* @return {@link JSONObject}
5252
*/
5353
public JSONObject getList(HashMap<String, String> params) throws JSONException {
54-
return oClient.get("/hr/v3/contractors/applications", params);
54+
return oClient.get("/hr/v4/contractors/applications", params);
5555
}
5656

5757
/**
@@ -62,7 +62,7 @@ public JSONObject getList(HashMap<String, String> params) throws JSONException {
6262
* @return {@link JSONObject}
6363
*/
6464
public JSONObject getSpecific(String reference) throws JSONException {
65-
return oClient.get("/hr/v3/contractors/applications/" + reference);
65+
return oClient.get("/hr/v4/contractors/applications/" + reference);
6666
}
6767

6868
}

0 commit comments

Comments
 (0)