Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Jan 18, 2024
1 parent 6581682 commit f5aa06b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# [Stellar SDK for PHP](https://github.com/Soneso/stellar-php-sdk)

![v1.3.3](https://img.shields.io/badge/v1.3.3-green.svg)
![v1.3.4](https://img.shields.io/badge/v1.3.4-green.svg)

The Soneso open source Stellar SDK for PHP provides APIs to build and sign transactions, connect and query [Horizon](https://github.com/stellar/horizon).

Expand Down
2 changes: 1 addition & 1 deletion Soneso/StellarSDK/StellarSDK.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
class StellarSDK
{

public const VERSION_NR = "1.3.3";
public const VERSION_NR = "1.3.4";
public static string $PUBLIC_NET_HORIZON_URL = "https://horizon.stellar.org";
public static string $TEST_NET_HORIZON_URL = "https://horizon-testnet.stellar.org";
public static string $FUTURE_NET_HORIZON_URL = "https://horizon-futurenet.stellar.org";
Expand Down
2 changes: 1 addition & 1 deletion Soneso/StellarSDKTests/QueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public function testQueryForClaimableBalance(): void
{
$sdk = StellarSDK::getTestNetInstance();
// get balance id from ClaimableBalancesTest
$bId = "000000005bd4daf94b38bfa03dc433161b653e2952b403c75307e4410b921c074f99185c";
$bId = "0000000028d3bd87bf85cb0335f70d19f18729671c37b8f6e7b641685518c1af63cb9ba0";
$response = $sdk->operations()->forClaimableBalance($bId)->limit(1)->order("desc")->execute();
$this->assertTrue($response->getOperations()->count() == 1);
$response = $sdk->transactions()->forClaimableBalance($bId)->limit(1)->order("desc")->execute();
Expand Down

0 comments on commit f5aa06b

Please sign in to comment.