diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b709622..68230be1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.9.2 +* Changed from using LevelDB to RocksDB +* Changed transactions to use JSON objects rather than unlabeled arrays +* Relies on indy-plenum and indy-crypto with BLS sigs fix +* bugfixes + ## 0.9.1 * refactor to unify validation between fees and payments * relies on stable versions of all artifacts diff --git a/sovtoken/sovtoken/__metadata__.py b/sovtoken/sovtoken/__metadata__.py index 7d5e3b99..7ce3573e 100644 --- a/sovtoken/sovtoken/__metadata__.py +++ b/sovtoken/sovtoken/__metadata__.py @@ -4,7 +4,7 @@ # TODO: Update the field values below where needed __title__ = 'sovtoken' -__version_info__ = (0, 9, 1) +__version_info__ = (0, 9, 2) __version__ = '.'.join(map(str, __version_info__)) __description__ = 'Token Plugin For Indy Plenum' __long_description__ = '' diff --git a/sovtokenfees/sovtokenfees/__metadata__.py b/sovtokenfees/sovtokenfees/__metadata__.py index 5ed25fa1..05b2323b 100644 --- a/sovtokenfees/sovtokenfees/__metadata__.py +++ b/sovtokenfees/sovtokenfees/__metadata__.py @@ -9,7 +9,7 @@ __maintainer__ = 'Evernym' __title__ = 'sovtokenfees' __url__ = 'https://github.com/evernym/plugin/tree/master/sovtokenfees' -__version_info__ = (0, 9, 1) +__version_info__ = (0, 9, 2) __version__ = '.'.join(map(str, __version_info__)) __all__ = ['__title__',