Skip to content

Releases: IntersectMBO/bech32

Version 1.1.6

24 Apr 06:28
1cd92d3
Compare
Choose a tag to compare

📖 Documentation

https://hackage.haskell.org/package/bech32-1.1.6
https://hackage.haskell.org/package/bech32-th-1.1.6

⚕️ Changed

  • Revised upper version bounds for all package dependencies.

Version 1.1.5

23 Feb 10:38
b8d3ffd
Compare
Choose a tag to compare

📖 Documentation

https://hackage.haskell.org/package/bech32-1.1.5
https://hackage.haskell.org/package/bech32-th-1.1.5

🆕 Added

  • Added support for GHC 9.8 series.

⚕️ Fixed

  • Updated version bounds for all package dependencies.

Version 1.1.4

28 Jul 04:42
7ff754b
Compare
Choose a tag to compare

https://hackage.haskell.org/package/bech32-1.1.4

Fixed

  • Support for optparse-applicative versions >= 0.18.0.0.

Version 1.1.3

06 Jun 09:41
125c272
Compare
Choose a tag to compare

https://hackage.haskell.org/package/bech32-1.1.3

Fixed

  • Specify supported version bounds for optparse-applicative.

bech32 CLI fix for Windows

08 Nov 10:59
ab61914
Compare
Choose a tag to compare

Fixed

  • Strip whitespace from standard input of the bech32 command to so that it works with the echo command on Windows.

Documentation

See README .

Supported Operating Systems

  • Linux 64 bit
  • MacOS 64 bit
  • Windows 64 bit

Signatures

Name Role Approval
Rodney Lorrimar @rvl Technical Team Lead ✔️
Piotr Stachyra @piotr-iohk QA Engineer ✔️
Laurence Jenkins @LaurenceIO Release Manager ✔️

Bech32 v1.1.1

11 Jun 13:48
@rvl rvl
v1.1.1
8044239
Compare
Choose a tag to compare

Added

  • Added --version switch for the bech32 command.

Changed

  • Upgraded CI to build with Cabal 3.4.0.0 and GHC 8.10.4.

Documentation

See README .

Supported Operating Systems

  • Linux 64 bit

Signatures

Name Role Approval
Rodney Lorrimar @rvl Technical Team Lead ✔️
Piotr Stachyra @piotr-iohk QA Engineer ✔️
Laurence Jenkins @LaurenceIO Release Manager ✔️

Bech32 1.1.0

08 Jul 11:08
v1.1.0
e8d546c
Compare
Choose a tag to compare

This release provides a new command line interface for conversion to and from bech32 strings in the console.

Added

  • Added bech32 command-line interface (CLI) for easy conversions in the 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

Documentation

See README

Supported Operating Systems

  • Linux 64 bit

Signatures

Name Role Approval
Matthias Benkort @KtorZ Technical Team Lead ✔️
Piotr Stachyra @piotr-iohk QA Engineer ✔️
Tatyana Valkevych @tatyanavych Release Manager ✔️

v1.0.2

19 Feb 02:17
4959d84
Compare
Choose a tag to compare
  • Added companion Template Haskell library bech32-th. Includes quasi-quoters for parsing and validating string literals at compile time.

v1.0.1

17 Feb 05:59
6311b52
Compare
Choose a tag to compare
Bump version to 1.0.1.

v1.0.0

17 Feb 05:59
59ad7c7
Compare
Choose a tag to compare
bech32.cabal: Prepare for release

* Update maintainer list.
* Add an upper bound for 'base' library.
* Switch sense of 'development' flag.
* Cabal file fixes.