Skip to content

Commit

Permalink
Merge pull request #1208 from jdogresorg/9.60.0-release
Browse files Browse the repository at this point in the history
9.60.0 release
  • Loading branch information
jdogresorg authored Aug 29, 2022
2 parents 15a66be + 1e9bc41 commit ff495c7
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 8 deletions.
20 changes: 20 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
## Library Versions ##
* v9.60.0 (2022-08-29)
* Removed `callable`,`call_date`, and `call_price` from issuances
* Added support for CIP24 (Oracled Dispensers)
* Added support for CIP03 (Reset Token & Divisibility Statuses)
* Added `tx_index` field in bindings on dispenser close
* Added `divisible` field to `get_balances` API calls
* Added `asset` param to `get_asset_info()` API calls
* Added `transactions` table to `get_{table}` API calls
* Added network address validation to MPMA sends
* Added segwit format check for provided pubkeys when creating a send
* Update p2sh dust limit from 5640 to 546 (10x fee reduction)
* Update MPMA sends to adjust dust output to get to exact miners fee
* Update `get_supply()` with more efficient asset queries (thx @jotapea)
* Fixed issue with `get_destructions` and invalid UTF-8 characters
* Fixed issue with using 'BEGIN' keyword in API calls
* Fixed issue with transfering asset ownership to segwit addresses
* Fixed issue with locking subassets when parent owner is different
* Fixed "filled" order status when a BTCpay expires and another is successful
* Fixed issue with dispensers not working with p2sh addresses
* Fixed a bunch of CircleCI automated tests (thx @windsok)
* v9.59.1 (2021-01-17)
* Fixed api issues while building P2SH encoded transactions
* v9.59.0 (2021-01-11)
Expand Down
4 changes: 2 additions & 2 deletions counterpartylib/lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

# Versions
VERSION_MAJOR = 9
VERSION_MINOR = 59
VERSION_REVISION = 6
VERSION_MINOR = 60
VERSION_REVISION = 0
VERSION_STRING = str(VERSION_MAJOR) + '.' + str(VERSION_MINOR) + '.' + str(VERSION_REVISION)


Expand Down
12 changes: 6 additions & 6 deletions counterpartylib/protocol_changes.json
Original file line number Diff line number Diff line change
Expand Up @@ -292,22 +292,22 @@
"minimum_version_major": 9,
"minimum_version_minor": 59,
"minimum_version_revision": 6,
"block_index": 753000,
"block_index": 753500,
"testnet_block_index": 2288000
},
"cip03": {
"minimum_version_major": 9,
"minimum_version_minor": 59,
"minimum_version_revision": 6,
"block_index": 753000,
"block_index": 753500,
"testnet_block_index": 2288000
},
"issuance_asset_serialization_format": {
"mainnet":{
"1":{
"value":">QQ??If"
},
"753000":{
"753500":{
"value":">QQ???"
}
},
Expand All @@ -331,7 +331,7 @@
"1":{
"value":26
},
"753000":{
"753500":{
"value":19
}
},
Expand All @@ -355,7 +355,7 @@
"1":{
"value":">QQ?B"
},
"753000":{
"753500":{
"value":">QQ???B"
}
},
Expand All @@ -376,7 +376,7 @@
"1":{
"value":18
},
"753000":{
"753500":{
"value":20
}
},
Expand Down

0 comments on commit ff495c7

Please sign in to comment.