@@ -4,18 +4,70 @@ All notable changes to this project will be documented in this file.
44This project adheres to [ Semantic Versioning] ( https://semver.org ) .
55This changelog is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) .
66
7- ## [ 0.1.3]
7+ ## [ 0.1.3] - 2025-07-03
88### Added
9- - a lot of Transactions
9+ - TokenType Class
10+ - MAINTAINERS.md file
11+ - Duration Class
12+ - NFTTokenCreateTransaction Class
13+ - TokenUnfreezeTransaction
14+ - Executable Abstraction
15+ - Logger
16+ - Node Implementation
17+ - Integration Tests across the board
18+ - TokenWipeTransaction Class
19+ - TokenNFTInfoQuery Class
20+ - TokenInfo Class
21+ - TokenRejectTransaction Class
22+ - TokenUpdateNftsTransaction Class
23+ - TokenInfoQuery Class
24+ - TokenPauseTransaction Class
25+ - TokenBurnTransaction Class
26+ - TokenGrantKycTransaction Class
27+ - TokenUpdateTransaction Class
28+ - added Type hinting and initial methods to several modules
29+ - TokenRevoceKycTransaction Class
30+ - README_types.md
31+ - TransactionRecordQuery Class
32+ - AccountInfoQuery Class
33+
1034
1135### Changed
12- - Example scripts updated
36+ - replace datetime.utcnow() with datetime.now(timezone.utc) for Python 3.10
37+ - updated pr-checks.yml
38+ - added add_require_frozen() to Transaction Base Class
39+ - added NFT Transfer in TransferTransaction
40+ - bumped solo-actions to latest release
41+ - updated to/from_proto method to be protected
42+ - Example scripts updated to be easily run form root
1343- README updated
44+ - added PublicKey.from_proto to PublicKey class
45+ - changed Query Class to have method get_cost
46+
47+ ### Fixed
48+ - fixed INVALID_NODE_ACCOUNT during node switching
49+ - fixed ed25519 key ambiguity (PrivateKey.from_string -> PrivateKey.from_string_ed25519 in examples)
1450
1551### Removed
52+ - Redundant test.py file
1653
1754
18- ## [ 0.1.1]
55+ ## [ 0.1.2] - 2025-03-12
56+ ### Added
57+ - NFTId Class
58+
59+ ### Changed
60+ - use SEC1 ECPrivateKey instead of PKCS #8
61+
62+ ### Fixed
63+ - PR checks
64+ - misnamed parameter (ECDSASecp256k1=pub_bytes -> ECDSA_secp256k1=pub_bytes)
65+
66+ ### Removed
67+ - .DS_store file
68+
69+
70+ ## [ 0.1.1] – 2025-02-25
1971### Added
2072- RELEASE.md
2173- CONTRIBUTING.md
@@ -27,6 +79,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
2779### Removed
2880- pdm.lock & uv.lock file
2981
82+
3083## [ 0.1.0] - 2025-02-19
3184### Added
3285- Initial release of the Python SDK core functionality.
0 commit comments