You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.4 KiB

7 years ago
7 years ago
7 years ago
  1. # Changelog
  2. ## 0.4.1 (October 27, 2017)
  3. This release removes support for bcrypt as it was merged too soon without an upgrade plan
  4. for existing keys.
  5. REVERTS THE FOLLOWING COMMITS:
  6. - Parameterize and lower bcrypt cost - dfc4cdd2d71513e4a9922d679c74f36357c4c862
  7. - Upgrade keys to use bcrypt with salts (#38) - 8e7f0e7701f92206679ad093d013b9b162427631
  8. ## 0.4.0 (October 27, 2017)
  9. BREAKING CHANGES:
  10. - `keys`: use bcrypt plus salt
  11. FEATURES:
  12. - add support for signing via Ledger Nano
  13. IMPROVEMENTS:
  14. - linting and comments
  15. ## 0.3.0 (September 22, 2017)
  16. BREAKING CHANGES:
  17. - Remove `cmd` and `keys/tx` packages altogether: move it to the cosmos-sdk
  18. - `cryptostore.Generator` takes a secret
  19. - Remove `String()` from `Signature` interface
  20. FEATURES:
  21. - `keys`: add CRC16 error correcting code
  22. IMPROVEMENTS:
  23. - Allow no passwords on keys for development convenience
  24. ## 0.2.1 (June 21, 2017)
  25. - Improve keys command
  26. - No password prompts in non-interactive mode (echo 'foobar' | keys new foo)
  27. - Added support for seed phrases
  28. - Seed phrase now returned on `keys new`
  29. - Add `keys restore` to restore private key from key phrase
  30. - Checksum to verify typos in the seed phrase (rather than just a useless key)
  31. - Add `keys delete` to remove a key if needed
  32. ## 0.2.0 (May 18, 2017)
  33. BREAKING CHANGES:
  34. - [hd] The following functions no longer take a `coin string` as argument: `ComputeAddress`, `AddrFromPubKeyBytes`, `ComputeAddressForPrivKey`, `ComputeWIF`, `WIFFromPrivKeyBytes`
  35. - Changes to `PrivKey`, `PubKey`, and `Signature` (denoted `Xxx` below):
  36. - interfaces are renamed `XxxInner`, and are not for use outside the package, though they must be exposed for sake of serialization.
  37. - `Xxx` is now a struct that wraps the corresponding `XxxInner` interface
  38. FEATURES:
  39. - `github.com/tendermint/go-keys -> github.com/tendermint/go-crypto/keys` - command and lib for generating and managing encrypted keys
  40. - [hd] New function `WIFFromPrivKeyBytes(privKeyBytes []byte, compress bool) string`
  41. - Changes to `PrivKey`, `PubKey`, and `Signature` (denoted `Xxx` below):
  42. - Expose a new method `Unwrap() XxxInner` on the `Xxx` struct which returns the corresponding `XxxInner` interface
  43. - Expose a new method `Wrap() Xxx` on the `XxxInner` interface which returns the corresponding `Xxx` struct
  44. IMPROVEMENTS:
  45. - Update to use new `tmlibs` repository
  46. ## 0.1.0 (April 14, 2017)
  47. Initial release