Skip to content

Commit 32895cd

Browse files
authored
Merge pull request #13 from upwork/v1.2.3
v1.2.3
2 parents b48b104 + fe5f214 commit 32895cd

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 1.2.3
4+
* Applications API has moved from v3 to v4
5+
36
## 1.2.2
47
* Fixed a typo in Send a Message to a Room API
58

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "upwork/php-upwork",
33
"description": "PHP bindings for Upwork API",
4-
"version": "v1.2.2",
4+
"version": "v1.2.3",
55
"type": "library",
66
"keywords": ["upwork", "php", "api"],
77
"homepage": "http://www.upwork.com",
8-
"time": "2016-08-26",
8+
"time": "2017-02-15",
99
"license": "Apache-2.0",
1010
"authors": [
1111
{

docs/docs.zip

-2 Bytes
Binary file not shown.

src/Upwork/API/Routers/Hr/Clients/Applications.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getList($params)
5252
{
5353
ApiDebug::p(__FUNCTION__);
5454

55-
$response = $this->_client->get('/hr/v3/clients/applications', $params);
55+
$response = $this->_client->get('/hr/v4/clients/applications', $params);
5656
ApiDebug::p('found response info', $response);
5757

5858
return $response;
@@ -69,7 +69,7 @@ public function getSpecific($reference, $params)
6969
{
7070
ApiDebug::p(__FUNCTION__);
7171

72-
$response = $this->_client->get('/hr/v3/clients/applications/' . $reference, $params);
72+
$response = $this->_client->get('/hr/v4/clients/applications/' . $reference, $params);
7373
ApiDebug::p('found response info', $response);
7474

7575
return $response;

src/Upwork/API/Routers/Hr/Freelancers/Applications.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getList($params)
5252
{
5353
ApiDebug::p(__FUNCTION__);
5454

55-
$response = $this->_client->get('/hr/v3/contractors/applications', $params);
55+
$response = $this->_client->get('/hr/v4/contractors/applications', $params);
5656
ApiDebug::p('found response info', $response);
5757

5858
return $response;
@@ -68,7 +68,7 @@ public function getSpecific($reference)
6868
{
6969
ApiDebug::p(__FUNCTION__);
7070

71-
$response = $this->_client->get('/hr/v3/contractors/applications/' . $reference);
71+
$response = $this->_client->get('/hr/v4/contractors/applications/' . $reference);
7272
ApiDebug::p('found response info', $response);
7373

7474
return $response;

0 commit comments

Comments
 (0)