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.

27 lines
1.1 KiB

  1. # Changelog
  2. ## 0.2.0 (May 15, 2017)
  3. BREAKING CHANGES:
  4. - [hd] The following functions no longer take a `coin string` as argument: `ComputeAddress`, `AddrFromPubKeyBytes`, `ComputeAddressForPrivKey`, `ComputeWIF`, `WIFFromPrivKeyBytes`
  5. - Changes to `PrivKey`, `PubKey`, and `Signature` (denoted `Xxx` below):
  6. - interfaces are renamed `XxxInner`, and are not for use outside the package, though they must be exposed for sake of serialization.
  7. - `Xxx` is now a struct that wraps the corresponding `XxxInner` interface
  8. FEATURES:
  9. - `github.com/tendermint/go-keys -> github.com/tendermint/go-crypto/keys` - command and lib for generating and managing encrypted keys
  10. - [hd] New function `WIFFromPrivKeyBytes(privKeyBytes []byte, compress bool) string`
  11. - Changes to `PrivKey`, `PubKey`, and `Signature` (denoted `Xxx` below):
  12. - Expose a new method `Unwrap() XxxInner` on the `Xxx` struct which returns the corresponding `XxxInner` interface
  13. - Expose a new method `Wrap() Xxx` on the `XxxInner` interface which returns the corresponding `Xxx` struct
  14. IMPROVEMENTS:
  15. - Update to use new `tmlibs` repository
  16. ## 0.1.0 (April 14, 2017)
  17. Initial release