diff --git a/bech32/ChangeLog.md b/bech32/ChangeLog.md index 5646733..88ba315 100644 --- a/bech32/ChangeLog.md +++ b/bech32/ChangeLog.md @@ -1,5 +1,37 @@ # ChangeLog for `bech32` +## 1.1.0 -- 2020-07-08 + ++ Added `bech32` command-line for easy conversions in the console. + + ```console + Usage: bech32 [PREFIX] + Convert to and from bech32 strings. Data are read from standard input. + + Available options: + -h,--help Show this help text + PREFIX An optional human-readable prefix (e.g. 'addr'). + - When provided, the input text is decoded from various encoding formats and re-encoded to bech32 using the given prefix. + - When omitted, the input text is decoded from bech32 to base16. + + Supported encoding formats: Base16, Bech32 & Base58. + + Examples: + To Bech32: + $ bech32 base16_ <<< 706174617465 + base16_1wpshgct5v5r5mxh0 + + $ bech32 base58_ <<< Ae2tdPwUPEYy + base58_1p58rejhd9592uusa8pzj2 + + $ bech32 new_prefix <<< old_prefix1wpshgcg2s33x3 + new_prefix1wpshgcgeak9mv + + From Bech32: + $ bech32 <<< base16_1wpshgct5v5r5mxh0 + 706174617465 + ``` + ## 1.0.2 -- 2020-02-19 + Added support for the `bech32-th` extension library. diff --git a/bech32/bech32.cabal b/bech32/bech32.cabal index eb0d69c..ff23207 100644 --- a/bech32/bech32.cabal +++ b/bech32/bech32.cabal @@ -1,5 +1,5 @@ name: bech32 -version: 1.0.2 +version: 1.1.0 synopsis: Implementation of the Bech32 cryptocurrency address format (BIP 0173). description: Implementation of the Bech32 cryptocurrency address format documented in the BIP (Bitcoin Improvement Proposal) 0173.