Skip to content

Commit fe5ced6

Browse files
authored
docs: 0.4.0 changelog (#49)
1 parent 7b457bd commit fe5ced6

File tree

9 files changed

+17
-8
lines changed

9 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,35 +7,47 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## 0.4.0 - 2018-12-19
11+
12+
### Changed
13+
14+
- Support vendor fields up to 255 characters
15+
1016
## 0.3.0 - 2018-12-19
1117

1218
### Changed
19+
1320
- Upgraded `bitwasp/bitcoin` to `1.0.0`
1421

1522
## 0.2.5 - 2018-12-07
1623

1724
### Fixed
25+
1826
- Handle signed messages that were created through Desktop Wallet 2.0
1927

2028
## 0.2.4 - 2018-11-08
2129

2230
### Fixed
31+
2332
- Missing ID from delegate registrations
2433
- Maximum vendor field length _(previously 63, now 64)_
2534

2635
## 0.2.3 - 2018-09-30
2736

2837
### Fixed
38+
2939
- Skip recipient id in `toBytes` for type 1 and 4 transactions.
3040

3141
## 0.2.2 - 2018-07-31
3242

3343
### Fixed
44+
3445
- Properly calculate the transaction `id` if signed with second signature.
3546

3647
## 0.2.1 - 2018-07-20
3748

3849
### Fixed
50+
3951
- Properly handle `asset` if empty in `ArkEcosystem\Crypto\Transactions\Transaction`.
4052
- Properly handle `version` and `network` if not set on `ArkEcosystem\Crypto\Transactions\Transaction`.
4153
- Added missing `ArkEcosystem\Crypto\Networks\Devnet` use to `ArkEcosystem\Crypto\Configuration\Network`
@@ -45,9 +57,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4557
Several files and folders have been moved around for guideline compliance - see the [diff](https://github.com/ArkEcosystem/php-crypto/compare/0.1.0...0.2.0) for more details
4658

4759
### Fixed
60+
4861
- Multi Payment Serialisation & Deserialisation
4962

5063
### Added
64+
5165
- Slot helper
5266
- Validate PublicKey
5367
- Get Public Key from Hex
@@ -57,10 +71,13 @@ Several files and folders have been moved around for guideline compliance - see
5771
- Transaction to JSON
5872

5973
### Changed
74+
6075
- Upgraded `bitwasp/bitcoin` to `0.0.35`
6176

6277
### Removed
78+
6379
- Dropped `nethash` from networks as it was not used
6480

6581
## 0.1.0 - 2018-07-02
82+
6683
- Initial Release

tests/Transactions/Builder/DelegateRegistrationTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace ArkEcosystem\Tests\Crypto\Transactions\Builder;
1515

16-
use ArkEcosystem\Crypto\Utils\Crypto;
1716
use ArkEcosystem\Tests\Crypto\TestCase;
1817
use ArkEcosystem\Crypto\Identities\PublicKey;
1918
use ArkEcosystem\Crypto\Transactions\Builder\DelegateRegistration;

tests/Transactions/Builder/DelegateResignationTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace ArkEcosystem\Tests\Crypto\Transactions\Builder;
1515

16-
use ArkEcosystem\Crypto\Utils\Crypto;
1716
use ArkEcosystem\Tests\Crypto\TestCase;
1817

1918
/**

tests/Transactions/Builder/IPFSTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace ArkEcosystem\Tests\Crypto\Transactions\Builder;
1515

16-
use ArkEcosystem\Crypto\Utils\Crypto;
1716
use ArkEcosystem\Tests\Crypto\TestCase;
1817

1918
/**

tests/Transactions/Builder/MultiPaymentTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace ArkEcosystem\Tests\Crypto\Transactions\Builder;
1515

16-
use ArkEcosystem\Crypto\Utils\Crypto;
1716
use ArkEcosystem\Tests\Crypto\TestCase;
1817
use ArkEcosystem\Crypto\Identities\PublicKey;
1918
use ArkEcosystem\Crypto\Transactions\Builder\MultiPayment;

tests/Transactions/Builder/MultiSignatureRegistrationTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace ArkEcosystem\Tests\Crypto\Transactions\Builder;
1515

16-
use ArkEcosystem\Crypto\Utils\Crypto;
1716
use ArkEcosystem\Tests\Crypto\TestCase;
1817
use ArkEcosystem\Crypto\Identities\PublicKey;
1918
use ArkEcosystem\Crypto\Transactions\Builder\MultiSignatureRegistration;

tests/Transactions/Builder/TimelockTransferTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace ArkEcosystem\Tests\Crypto\Transactions\Builder;
1515

16-
use ArkEcosystem\Crypto\Utils\Crypto;
1716
use ArkEcosystem\Tests\Crypto\TestCase;
1817
use ArkEcosystem\Crypto\Transactions\Builder\TimelockTransfer;
1918

tests/Transactions/Builder/TransferTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace ArkEcosystem\Tests\Crypto\Transactions\Builder;
1515

16-
use ArkEcosystem\Crypto\Utils\Crypto;
1716
use ArkEcosystem\Tests\Crypto\TestCase;
1817
use ArkEcosystem\Crypto\Identities\PublicKey;
1918
use ArkEcosystem\Crypto\Transactions\Builder\Transfer;

tests/Transactions/Builder/VoteTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace ArkEcosystem\Tests\Crypto\Transactions\Builder;
1515

16-
use ArkEcosystem\Crypto\Utils\Crypto;
1716
use ArkEcosystem\Tests\Crypto\TestCase;
1817
use ArkEcosystem\Crypto\Identities\PublicKey;
1918
use ArkEcosystem\Crypto\Transactions\Builder\Vote;

0 commit comments

Comments
 (0)