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.

37 lines
1.5 KiB

7 years ago
  1. # Changelog
  2. ## 0.2.1 (June 21, 2017)
  3. - Improve keys command
  4. - No password prompts in non-interactive mode (echo 'foobar' | keys new foo)
  5. - Added support for seed phrases
  6. - Seed phrase now returned on `keys new`
  7. - Add `keys restore` to restore private key from key phrase
  8. - Checksum to verify typos in the seed phrase (rather than just a useless key)
  9. - Add `keys delete` to remove a key if needed
  10. ## 0.2.0 (May 18, 2017)
  11. BREAKING CHANGES:
  12. - [hd] The following functions no longer take a `coin string` as argument: `ComputeAddress`, `AddrFromPubKeyBytes`, `ComputeAddressForPrivKey`, `ComputeWIF`, `WIFFromPrivKeyBytes`
  13. - Changes to `PrivKey`, `PubKey`, and `Signature` (denoted `Xxx` below):
  14. - interfaces are renamed `XxxInner`, and are not for use outside the package, though they must be exposed for sake of serialization.
  15. - `Xxx` is now a struct that wraps the corresponding `XxxInner` interface
  16. FEATURES:
  17. - `github.com/tendermint/go-keys -> github.com/tendermint/go-crypto/keys` - command and lib for generating and managing encrypted keys
  18. - [hd] New function `WIFFromPrivKeyBytes(privKeyBytes []byte, compress bool) string`
  19. - Changes to `PrivKey`, `PubKey`, and `Signature` (denoted `Xxx` below):
  20. - Expose a new method `Unwrap() XxxInner` on the `Xxx` struct which returns the corresponding `XxxInner` interface
  21. - Expose a new method `Wrap() Xxx` on the `XxxInner` interface which returns the corresponding `Xxx` struct
  22. IMPROVEMENTS:
  23. - Update to use new `tmlibs` repository
  24. ## 0.1.0 (April 14, 2017)
  25. Initial release