changelog and version

This commit is contained in:
Ethan Buchman 2018-05-30 20:48:52 -04:00
parent eadc7b137b
commit e1ce3ffe0f
2 changed files with 31 additions and 1 deletions

View File

@ -1,5 +1,35 @@
# Changelog
## 0.7.0
**May 30th, 2018**
BREAKING CHANGES
No breaking changes compared to 0.6.2, but making up for the version bump that
should have happened in 0.6.1.
We also bring in the `tmlibs/merkle` package with breaking changes:
- change the hash function from RIPEMD160 to tmhash (first 20-bytes of SHA256)
- remove unused funcs and unexport SimpleMap
FEATURES
- [xchacha20poly1305] New authenticated encryption module
- [merkle] Moved in from tmlibs
- [merkle/tmhash] New hash function: the first 20-bytes of SHA256
IMPROVEMENTS
- Remove some dead code
- Use constant-time compare for signatures
BUG FIXES
- Fix MixEntropy weakness
- Fix PrivKeyEd25519.Generate()
## 0.6.2 (April 9, 2018)
IMPROVEMENTS

View File

@ -1,3 +1,3 @@
package crypto
const Version = "0.6.2"
const Version = "0.7.0"