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.

96 lines
2.8 KiB

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