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.

114 lines
3.1 KiB

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