From 55aa08c9a64f9955eb3e1acf134e96bee50ea37a Mon Sep 17 00:00:00 2001 From: J-Dog Date: Wed, 22 May 2024 12:27:29 -0700 Subject: [PATCH] version bump to `0.14.0` --- indexer/CHANGELOG.md | 9 +++++++++ indexer/includes/config.php | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/indexer/CHANGELOG.md b/indexer/CHANGELOG.md index a48f59b..629b3a0 100644 --- a/indexer/CHANGELOG.md +++ b/indexer/CHANGELOG.md @@ -1,5 +1,14 @@ CHANGELOG --- +0.14.0 +- `DIVIDEND` support +- `SWEEP` support +- `CALLBACK` support (disabled for now) +- fixed issue with `getTokenInfo()` setting `DECIMALS` incorrectly +- Added support for `MEMO` in `MINT` action +- Cleanup transaction fees code +- Updated `SEND` to consolidate sends by DESTINATION and TICK + 0.13.0 - Added support for `--compare=DB` - start using `—block=#` instead of `—reparse=#` diff --git a/indexer/includes/config.php b/indexer/includes/config.php index 2326191..b39af6a 100644 --- a/indexer/includes/config.php +++ b/indexer/includes/config.php @@ -9,7 +9,7 @@ // BTNS Indexer Version define("VERSION_MAJOR", 0); -define("VERSION_MINOR", 13); +define("VERSION_MINOR", 14); define("VERSION_REVISION",0); define("VERSION_STRING", VERSION_MAJOR . '.' . VERSION_MINOR . '.' . VERSION_REVISION);