Skip to content

Commit 2c2db4b

Browse files
authored
Merge pull request #23 from OpenSTFoundation/fix-v1.1-issues
Fix issues in v1.1
2 parents b580cac + 7a5c5d2 commit 2c2db4b

6 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
[OST PHP SDK v1.1.1](https://github.com/OpenSTFoundation/ost-sdk-php/tree/v1.1.1) July 2 2018
2+
---
3+
* Bug fix for V1.1 API
4+
* Added version file
5+
16
[OST PHP SDK v1.1.0](https://github.com/OpenSTFoundation/ost-sdk-php/tree/v1.1.0) July 2 2018
27
---
38

@@ -7,4 +12,4 @@
712
[OST PHP SDK v1.0.0](https://github.com/OpenSTFoundation/ost-sdk-php/tree/v1.0.0) May 30 2018
813
---
914
Initial release of the official OST PHP SDK<br />
10-
This release has the OST API interaction layer implementation.
15+
This release has the OST API interaction layer implementation.

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.1.1

src/OSTSdk.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function __construct(array $params)
3434
} elseif (strtolower($apiEndpointVersion) == 'v1') {
3535
$this->services = new \OST\V1\Manifest($params);
3636
} elseif (strtolower($apiEndpointVersion) == 'v1.1') {
37-
$this->services = new \OST\V1Dot1\Manifest($params);
37+
$this->services = new \OST\V1_1\Manifest($params);
3838
} else {
3939
throw new \Exception('Api endpoint is invalid');
4040
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Balances class
44
*/
55

6-
namespace OST\V1Dot1;
6+
namespace OST\V1_1;
77

88
use OST\Base;
99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Ledger class
44
*/
55

6-
namespace OST\V1Dot1;
6+
namespace OST\V1_1;
77

88
use OST\Base;
99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Manifest class
44
*/
55

6-
namespace OST\V1Dot1;
6+
namespace OST\V1_1;
77

88
use Lib\Request;
99

0 commit comments

Comments
 (0)