From 5aa1664df0e4c2f7ac859af344e470f77161f4d7 Mon Sep 17 00:00:00 2001 From: Sunil Khedar Date: Mon, 2 Jul 2018 21:32:07 +0530 Subject: [PATCH 1/8] Update OSTSdk.php --- src/OSTSdk.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OSTSdk.php b/src/OSTSdk.php index 33526fd..fa7bdcc 100644 --- a/src/OSTSdk.php +++ b/src/OSTSdk.php @@ -34,7 +34,7 @@ public function __construct(array $params) } elseif (strtolower($apiEndpointVersion) == 'v1') { $this->services = new \OST\V1\Manifest($params); } elseif (strtolower($apiEndpointVersion) == 'v1.1') { - $this->services = new \OST\V1Dot1\Manifest($params); + $this->services = new \OST\V1_1\Manifest($params); } else { throw new \Exception('Api endpoint is invalid'); } From 3794531cb9816545730b83335f96f81243574ca8 Mon Sep 17 00:00:00 2001 From: Sunil Khedar Date: Mon, 2 Jul 2018 21:32:43 +0530 Subject: [PATCH 2/8] Update Manifest.php --- src/Services/V1.1/Manifest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/V1.1/Manifest.php b/src/Services/V1.1/Manifest.php index 1d65cbd..cc7df1e 100644 --- a/src/Services/V1.1/Manifest.php +++ b/src/Services/V1.1/Manifest.php @@ -3,7 +3,7 @@ * Manifest class */ -namespace OST\V1Dot1; +namespace OST\V1_1; use Lib\Request; From 4d7aaf32b81924f22e2af99f1d63469958879750 Mon Sep 17 00:00:00 2001 From: Sunil Khedar Date: Mon, 2 Jul 2018 21:32:59 +0530 Subject: [PATCH 3/8] Update Ledger.php --- src/Services/V1.1/Ledger.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/V1.1/Ledger.php b/src/Services/V1.1/Ledger.php index aad076e..3cab168 100644 --- a/src/Services/V1.1/Ledger.php +++ b/src/Services/V1.1/Ledger.php @@ -3,7 +3,7 @@ * Ledger class */ -namespace OST\V1Dot1; +namespace OST\V1_1; use OST\Base; From 7989eec68ed89c93191f56e3d743016d56d0610a Mon Sep 17 00:00:00 2001 From: Sunil Khedar Date: Mon, 2 Jul 2018 21:33:15 +0530 Subject: [PATCH 4/8] Update Balances.php --- src/Services/V1.1/Balances.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/V1.1/Balances.php b/src/Services/V1.1/Balances.php index 1a6a0cf..32fcb82 100644 --- a/src/Services/V1.1/Balances.php +++ b/src/Services/V1.1/Balances.php @@ -3,7 +3,7 @@ * Balances class */ -namespace OST\V1Dot1; +namespace OST\V1_1; use OST\Base; From 589f4d52de745128114845a1dfe2980300e5543e Mon Sep 17 00:00:00 2001 From: sunil Date: Mon, 2 Jul 2018 21:35:12 +0530 Subject: [PATCH 5/8] modified V1.1 to V1_1 --- src/Services/{V1.1 => V1_1}/Balances.php | 0 src/Services/{V1.1 => V1_1}/Ledger.php | 0 src/Services/{V1.1 => V1_1}/Manifest.php | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename src/Services/{V1.1 => V1_1}/Balances.php (100%) rename src/Services/{V1.1 => V1_1}/Ledger.php (100%) rename src/Services/{V1.1 => V1_1}/Manifest.php (100%) diff --git a/src/Services/V1.1/Balances.php b/src/Services/V1_1/Balances.php similarity index 100% rename from src/Services/V1.1/Balances.php rename to src/Services/V1_1/Balances.php diff --git a/src/Services/V1.1/Ledger.php b/src/Services/V1_1/Ledger.php similarity index 100% rename from src/Services/V1.1/Ledger.php rename to src/Services/V1_1/Ledger.php diff --git a/src/Services/V1.1/Manifest.php b/src/Services/V1_1/Manifest.php similarity index 100% rename from src/Services/V1.1/Manifest.php rename to src/Services/V1_1/Manifest.php From 9c69e45befa7aed5ed8de59187dc089d0bcd6c85 Mon Sep 17 00:00:00 2001 From: Puneet Khushwani Date: Mon, 2 Jul 2018 22:20:42 +0530 Subject: [PATCH 6/8] change log for v1.1.1 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb96931..dbfba3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +[OST PHP SDK v1.1.1](https://github.com/OpenSTFoundation/ost-sdk-php/tree/v1.1.1) July 2 2018 +--- +* Bug fix for V1.1 API + [OST PHP SDK v1.1.0](https://github.com/OpenSTFoundation/ost-sdk-php/tree/v1.1.0) July 2 2018 --- From 89a0f8c18380359d9a7ec69b3c1d0d721d03b022 Mon Sep 17 00:00:00 2001 From: Puneet Khushwani Date: Mon, 2 Jul 2018 22:25:39 +0530 Subject: [PATCH 7/8] version file --- VERSION | 1 + 1 file changed, 1 insertion(+) create mode 100644 VERSION diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..8cfbc90 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +1.1.1 \ No newline at end of file From 7a5c5d2f557ea0dbca9e192306431805fdb7e87c Mon Sep 17 00:00:00 2001 From: Sunil Khedar Date: Mon, 2 Jul 2018 22:31:14 +0530 Subject: [PATCH 8/8] Update CHANGELOG.md --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbfba3a..81f2326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ [OST PHP SDK v1.1.1](https://github.com/OpenSTFoundation/ost-sdk-php/tree/v1.1.1) July 2 2018 --- * Bug fix for V1.1 API +* Added version file [OST PHP SDK v1.1.0](https://github.com/OpenSTFoundation/ost-sdk-php/tree/v1.1.0) July 2 2018 --- @@ -11,4 +12,4 @@ [OST PHP SDK v1.0.0](https://github.com/OpenSTFoundation/ost-sdk-php/tree/v1.0.0) May 30 2018 --- Initial release of the official OST PHP SDK
-This release has the OST API interaction layer implementation. \ No newline at end of file +This release has the OST API interaction layer implementation.