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.

64 lines
2.0 KiB

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