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}"
100
93
101
-
### Breaking API changes
94
+
### Breaking API changes
102
95
103
96
**Changed imports**
104
-
105
97
- src/hiero_sdk_python/consensus/topic_message.py: from hiero_sdk_python import Timestamp → from hiero_sdk_python.timestamp import Timestamp
106
98
- 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
109
101
- src/hiero_sdk_python/tokens/token_key_validation.py: from hiero_sdk_python.hapi.services → import basic_types_pb2
110
102
- 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
111
103
- 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
112
104
- 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
113
105
- 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
114
106
- 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
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
107
+
- 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
116
108
117
109
## [0.1.4] - 2025-08-19
118
-
119
110
### Added
120
-
121
111
- CONTRIBUTING.md: expanded documentation detailing various contribution processes in a step-by-step way. Includes new sections: blog posts and support.
122
112
- 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.
149
136
150
137
#### In `token_info.py`
151
-
152
-
- tokenId → token_id
153
-
- totalSupply → total_supply
138
+
- tokenId → token_id
139
+
- totalSupply → total_supply
154
140
- isDeleted → is_deleted
155
-
- tokenType → token_type
156
-
- maxSupply → max_supply
157
-
- adminKey → admin_key
141
+
- tokenType → token_type
142
+
- maxSupply → max_supply
143
+
- adminKey → admin_key
158
144
- kycKey → kyc_key
159
-
- freezeKey → freeze_key
145
+
- freezeKey → freeze_key
160
146
- wipeKey → wipe_key
161
147
- supplyKey → supply_key
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
148
+
- defaultFreezeStatus → default_freeze_status
149
+
- defaultKycStatus → default_kyc_status
150
+
- autoRenewAccount → auto_renew_account
151
+
- autoRenewPeriod → auto_renew_period
152
+
- pauseStatus → pause_status
153
+
- supplyType → supply_type
168
154
169
155
#### In `nft_id.py`
170
-
171
-
- tokenId → token_id
172
-
- serialNumber → serial_number
156
+
- tokenId → token_id
157
+
- serialNumber → serial_number
173
158
174
159
#### In `transaction_receipt.py`
175
-
176
160
- tokenId → token_id
177
-
- topicId → topic_id
178
-
- accountId → account_id
161
+
- topicId → topic_id
162
+
- accountId → account_id
179
163
- fileId → file_id
180
164
181
165
### Deprecated Additions
182
-
183
166
- logger.warn will be deprecated in v0.1.4. Please use logger.warning instead.
184
167
- get_logger method passing (name, level) will be deprecated in v0.1.4 for (level, name).
0 commit comments