Browse Source

changelog and version

pull/1782/head
Ethan Buchman 7 years ago
parent
commit
e1ce3ffe0f
2 changed files with 31 additions and 1 deletions
  1. +30
    -0
      CHANGELOG.md
  2. +1
    -1
      version.go

+ 30
- 0
CHANGELOG.md 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


+ 1
- 1
version.go View File

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

Loading…
Cancel
Save