Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion sovtoken/sovtoken/__metadata__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = ''
Expand Down
2 changes: 1 addition & 1 deletion sovtokenfees/sovtokenfees/__metadata__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__',
Expand Down