You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- assert relationship.freeze_status == TokenFreezeStatus.FROZEN, f"Expected freeze status to be FROZEN, but got {relationship.freeze_status}" → assert relationship.freeze_status == TokenFreezeStatus.UNFROZEN, f"Expected freeze status to be UNFROZEN, but got {relationship.freeze_status}"
96
100
97
-
### Breaking API changes
101
+
### Breaking API changes
98
102
99
103
**Changed imports**
104
+
100
105
- src/hiero_sdk_python/consensus/topic_message.py: from hiero_sdk_python import Timestamp → from hiero_sdk_python.timestamp import Timestamp
101
106
- src/hiero_sdk_python/query/topic_message_query.py: from hiero_sdk_python import Client → from hiero_sdk_python.client.client import Client
- src/hiero_sdk_python/tokens/token_info.py: from hiero_sdk_python.hapi.services.token_get_info_pb2 import TokenInfo as proto_TokenInfo → from hiero_sdk_python.hapi.services import token_get_info_pb2
104
109
- src/hiero_sdk_python/tokens/token_key_validation.py: from hiero_sdk_python.hapi.services → import basic_types_pb2
105
110
- src/hiero_sdk_python/tokens/token_kyc_status.py: from hiero_sdk_python.hapi.services.basic_types_pb2 import TokenKycStatus as proto_TokenKycStatus → from hiero_sdk_python.hapi.services import basic_types_pb2
106
111
- src/hiero_sdk_python/tokens/token_pause_status.py: from hiero_sdk_python.hapi.services.basic_types_pb2 import (TokenPauseStatus as proto_TokenPauseStatus,) → from hiero_sdk_python.hapi.services import basic_types_pb2
107
112
- src/hiero_sdk_python/tokens/token_pause_transaction.py: from hiero_sdk_python.hapi.services.token_pause_pb2 import TokenPauseTransactionBody → from hiero_sdk_python.hapi.services import token_pause_pb2, transaction_pb2
108
113
- from hiero_sdk_python.hapi.services.token_revoke_kyc_pb2 import TokenRevokeKycTransactionBody → from hiero_sdk_python.hapi.services import token_revoke_kyc_pb2, transaction_pb2
109
114
- src/hiero_sdk_python/tokens/token_update_nfts_transaction.py: from hiero_sdk_python.hapi.services.token_update_nfts_pb2 import TokenUpdateNftsTransactionBody → from hiero_sdk_python.hapi.services import token_update_nfts_pb2,transaction_pb2
110
-
- src/hiero_sdk_python/tokens/token_wipe_transaction.py: from hiero_sdk_python.hapi.services.token_wipe_account_pb2 import TokenWipeAccountTransactionBody → from hiero_sdk_python.hapi.services import token_wipe_account_pb2, transaction_pb2
115
+
- src/hiero_sdk_python/tokens/token_wipe_transaction.py: from hiero_sdk_python.hapi.services.token_wipe_account_pb2 import TokenWipeAccountTransactionBody → from hiero_sdk_python.hapi.services import token_wipe_account_pb2, transaction_pb2
111
116
112
117
## [0.1.4] - 2025-08-19
118
+
113
119
### Added
120
+
114
121
- CONTRIBUTING.md: expanded documentation detailing various contribution processes in a step-by-step way. Includes new sections: blog posts and support.
115
122
- README_upstream.md: documentation explaining how to rebase to main.
**We have several camelCase uses that will be deprecated → snake_case** Original aliases will continue to function, with a warning, until the following release.
139
149
140
150
#### In `token_info.py`
141
-
- tokenId → token_id
142
-
- totalSupply → total_supply
151
+
152
+
- tokenId → token_id
153
+
- totalSupply → total_supply
143
154
- isDeleted → is_deleted
144
-
- tokenType → token_type
145
-
- maxSupply → max_supply
146
-
- adminKey → admin_key
155
+
- tokenType → token_type
156
+
- maxSupply → max_supply
157
+
- adminKey → admin_key
147
158
- kycKey → kyc_key
148
-
- freezeKey → freeze_key
159
+
- freezeKey → freeze_key
149
160
- wipeKey → wipe_key
150
161
- supplyKey → supply_key
151
-
- defaultFreezeStatus → default_freeze_status
152
-
- defaultKycStatus → default_kyc_status
153
-
- autoRenewAccount → auto_renew_account
154
-
- autoRenewPeriod → auto_renew_period
155
-
- pauseStatus → pause_status
156
-
- supplyType → supply_type
162
+
- defaultFreezeStatus → default_freeze_status
163
+
- defaultKycStatus → default_kyc_status
164
+
- autoRenewAccount → auto_renew_account
165
+
- autoRenewPeriod → auto_renew_period
166
+
- pauseStatus → pause_status
167
+
- supplyType → supply_type
157
168
158
169
#### In `nft_id.py`
159
-
- tokenId → token_id
160
-
- serialNumber → serial_number
170
+
171
+
- tokenId → token_id
172
+
- serialNumber → serial_number
161
173
162
174
#### In `transaction_receipt.py`
175
+
163
176
- tokenId → token_id
164
-
- topicId → topic_id
165
-
- accountId → account_id
177
+
- topicId → topic_id
178
+
- accountId → account_id
166
179
- fileId → file_id
167
180
168
181
### Deprecated Additions
182
+
169
183
- logger.warn will be deprecated in v0.1.4. Please use logger.warning instead.
170
184
- get_logger method passing (name, level) will be deprecated in v0.1.4 for (level, name).
0 commit comments