Skip to content

Commit 4732325

Browse files
authored
docs(changelog): separate platforms arduino (#210)
1 parent 10cc635 commit 4732325

1 file changed

Lines changed: 13 additions & 53 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,26 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [1.0.0] - 2020-02-13
9-
108
## [1.0.0-arduino] - 2020-02-13
119

1210
### Changed
13-
- break up unit tests to support platforms with limited RAM ([#172])
1411
- removed use of monolithic `arkCrypto.h` header ([#190])
12+
- break up unit tests to support platforms with limited RAM ([#172])
1513

1614
### Added
1715
- added AIP-11 support for Core v.2.6 Transactions ([#198])
1816

1917
### Fixed
20-
- fixed `transaction::to_array` tests on ESP8266 ([#178])
2118
- fixed `transaction::to_json` tests on ESP8266 ([#180])
22-
23-
## [0.7.0] - 2019-10-08
19+
- fixed `transaction::to_array` tests on ESP8266 ([#178])
2420

2521
## [0.7.0-arduino] - 2019-10-08
2622

2723
### Changed
28-
- improved coverage and formatting ([#121])
24+
- moved external libraries out of source tree ([#156])
2925
- refactored utils implementation ([#133])
26+
- improved coverage and formatting ([#121])
3027
- refactored Identities implementation. ([#120])
31-
- moved external libraries out of source tree ([#156])
32-
33-
## [0.6.0] - 2019-07-16
3428

3529
## [0.6.0-arduino] - 2019-07-16
3630

@@ -42,62 +36,36 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4236
- improved PlatformIO configuration ([#101])
4337
- improved formatting and maintainability ([#98])
4438
- improved Slots implementations ([#92])
45-
46-
### Fixed
47-
- fixed Transaction Json numeric serialization ([#103])
48-
49-
## [0.5.0] - 2019-02-20
50-
51-
### Changed
52-
- removed bip39 and mnemonic feature ([#86])
53-
54-
## [0.4.0] - 2019-05-20
55-
56-
### Changed
5739
- changed to BIP66 lib for DER ser/des ([#88])
40+
- removed bip39 and mnemonic feature ([#86])
5841
- updated vendorField to support 255 bytes in Core v2.4 ([#84])
42+
- improved Windows support ([#83])
5943
- updated ArduinoJson package to version v.6.10.0 ([#76])
6044
- updated tests to use Core fixtures ([#74])
61-
- improved Windows support ([#83])
6245

6346
### Fixed
47+
- fixed Transaction Json numeric serialization ([#103])
6448
- properly handle 0 ARKtoshi Transaction amounts ([#85])
65-
66-
## [0.3.1] - 2019-02-19
67-
68-
### Fixed
6949
- fixed PIO submodule ignore paths in `./platformio.ini` ([#70])
7050
- added `./src/lib` to build flags for PIO in `./library.json` ([#69])
7151

72-
## [0.3.0] - 2019-02-16
73-
7452
## [0.3.0-arduino] - 2019-02-16
7553

7654
### Added
7755
- Arduino CircleCI config ([#61])
78-
79-
### Changed
80-
- updated `keywords.txt` ([#64])
81-
- updated `./library.json` package export settings ([#64])
82-
- removed unnecessary files and external packages to `./src/lib/` ([#64])
83-
- moved `./docs` to `./extras` in arduino builds ([#64])
84-
- updated `ARDUINO_IDE.sh` script to reflect `lib/` changes ([#64])
85-
- automated `ARDUINO_IDE.sh` script ([#60])
86-
87-
## [0.2.0] - 2019-02-07
88-
89-
### Added
90-
- Added `toJson()` method to `Transaction` class ([#54])
9156
- Added `ArduinoJson` dependency and Arduino Sketch paths to `library.json` ([#55])
57+
- Added `toJson()` method to `Transaction` class ([#54])
9258

9359
### Changed
94-
- Removed unused Arduino Adapter Header ([#50])
95-
- Renamed `Helpers` class to avoid naming collision with Cpp-Client `Helpers` ([#51])
60+
- updated Arduino-related files ([#64])
61+
- automated `ARDUINO_IDE.sh` script ([#60])
9662
- Refactored Timestamps & `Slots` to use milliseconds and avoid integer overflow ([#53])
63+
- Renamed `Helpers` class to avoid naming collision with Cpp-Client `Helpers` ([#51])
64+
- Removed unused Arduino Adapter Header ([#50])
9765

9866
### Fixed
99-
- Fixed the way the Arduino IDE Script restores converted directories ([#49])
10067
- Corrected PIO Builds to determine dependency versions explicitly ([#52])
68+
- Fixed the way the Arduino IDE Script restores converted directories ([#49])
10169

10270
[#49]: https://github.com/ArkEcosystem/cpp-crypto/pull/49
10371
[#50]: https://github.com/ArkEcosystem/cpp-crypto/pull/50
@@ -106,42 +74,34 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
10674
[#53]: https://github.com/ArkEcosystem/cpp-crypto/pull/53
10775
[#54]: https://github.com/ArkEcosystem/cpp-crypto/pull/54
10876
[#55]: https://github.com/ArkEcosystem/cpp-crypto/pull/55
109-
[0.2.0]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.1.0...0.2.0
11077
[#60]: https://github.com/ArkEcosystem/cpp-crypto/pull/60
11178
[#61]: https://github.com/ArkEcosystem/cpp-crypto/pull/61
11279
[#64]: https://github.com/ArkEcosystem/cpp-crypto/pull/64
113-
[0.3.0]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.2.0...0.3.0
11480
[0.3.0-arduino]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.3.0-arduino
11581
[#69]: https://github.com/ArkEcosystem/cpp-crypto/pull/69
11682
[#70]: https://github.com/ArkEcosystem/cpp-crypto/pull/70
117-
[0.3.1]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.3.0...0.3.1
11883
[#74]: https://github.com/ArkEcosystem/cpp-crypto/pull/74
11984
[#76]: https://github.com/ArkEcosystem/cpp-crypto/pull/76
12085
[#83]: https://github.com/ArkEcosystem/cpp-crypto/pull/83
12186
[#84]: https://github.com/ArkEcosystem/cpp-crypto/pull/84
12287
[#85]: https://github.com/ArkEcosystem/cpp-crypto/pull/85
12388
[#88]: https://github.com/ArkEcosystem/cpp-crypto/pull/88
124-
[0.4.0]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.3.1...0.4.0
12589
[#86]: https://github.com/ArkEcosystem/cpp-crypto/pull/86
126-
[0.5.0]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.4.0...0.5.0
12790
[#92]: https://github.com/ArkEcosystem/cpp-crypto/pull/92
12891
[#98]: https://github.com/ArkEcosystem/cpp-crypto/pull/98
12992
[#101]: https://github.com/ArkEcosystem/cpp-crypto/pull/101
13093
[#103]: https://github.com/ArkEcosystem/cpp-crypto/pull/103
13194
[#105]: https://github.com/ArkEcosystem/cpp-crypto/pull/105
13295
[#111]: https://github.com/ArkEcosystem/cpp-crypto/pull/111
133-
[0.6.0]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.5.0...0.6.0
13496
[0.6.0-arduino]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.3.0-arduino...0.6.0-arduino
13597
[#120]: https://github.com/ArkEcosystem/cpp-crypto/pull/120
13698
[#121]: https://github.com/ArkEcosystem/cpp-crypto/pull/121
13799
[#133]: https://github.com/ArkEcosystem/cpp-crypto/pull/133
138100
[#156]: https://github.com/ArkEcosystem/cpp-crypto/pull/156
139-
[0.7.0]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.6.0...0.7.0
140101
[0.7.0-arduino]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.6.0-arduino...0.7.0-arduino
141102
[#172]: https://github.com/ArkEcosystem/cpp-crypto/pull/172
142103
[#178]: https://github.com/ArkEcosystem/cpp-crypto/pull/178
143104
[#180]: https://github.com/ArkEcosystem/cpp-crypto/pull/180
144105
[#190]: https://github.com/ArkEcosystem/cpp-crypto/pull/190
145106
[#198]: https://github.com/ArkEcosystem/cpp-crypto/pull/198
146-
[1.0.0]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.7.0-arduino...1.0.0
147107
[1.0.0-arduino]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.7.0-arduino...1.0.0-arduino

0 commit comments

Comments
 (0)