Skip to content

Commit

Permalink
Merge pull request #13 from upwork/v1.2.3
Browse files Browse the repository at this point in the history
v1.2.3
  • Loading branch information
mnovozhylov committed Feb 15, 2017
2 parents b48b104 + fe5f214 commit 32895cd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

## 1.2.3
* Applications API has moved from v3 to v4

## 1.2.2
* Fixed a typo in Send a Message to a Room API

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "upwork/php-upwork",
"description": "PHP bindings for Upwork API",
"version": "v1.2.2",
"version": "v1.2.3",
"type": "library",
"keywords": ["upwork", "php", "api"],
"homepage": "http://www.upwork.com",
"time": "2016-08-26",
"time": "2017-02-15",
"license": "Apache-2.0",
"authors": [
{
Expand Down
Binary file modified docs/docs.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Upwork/API/Routers/Hr/Clients/Applications.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function getList($params)
{
ApiDebug::p(__FUNCTION__);

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

return $response;
Expand All @@ -69,7 +69,7 @@ public function getSpecific($reference, $params)
{
ApiDebug::p(__FUNCTION__);

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

return $response;
Expand Down
4 changes: 2 additions & 2 deletions src/Upwork/API/Routers/Hr/Freelancers/Applications.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function getList($params)
{
ApiDebug::p(__FUNCTION__);

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

return $response;
Expand All @@ -68,7 +68,7 @@ public function getSpecific($reference)
{
ApiDebug::p(__FUNCTION__);

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

return $response;
Expand Down

0 comments on commit 32895cd

Please sign in to comment.