packages feed

ppad-bip39 0.1.0 → 0.1.1

raw patch · 3 files changed

+7/−5 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Crypto.KDF.BIP39: chinese_simplified :: Wordlist
+ Crypto.KDF.BIP39: chinese_traditional :: Wordlist
+ Crypto.KDF.BIP39: czech :: Wordlist
+ Crypto.KDF.BIP39: english :: Wordlist
+ Crypto.KDF.BIP39: french :: Wordlist
+ Crypto.KDF.BIP39: italian :: Wordlist
+ Crypto.KDF.BIP39: japanese :: Wordlist
+ Crypto.KDF.BIP39: korean :: Wordlist
+ Crypto.KDF.BIP39: portuguese :: Wordlist
+ Crypto.KDF.BIP39: spanish :: Wordlist

Files

CHANGELOG view
@@ -1,5 +1,8 @@ # Changelog +- 0.1.1 (2025-02-27)+  * Include wordlists in generated Haddocks.+ - 0.1.0 (2025-02-27)   * Initial release. 
lib/Crypto/KDF/BIP39.hs view
@@ -1,4 +1,3 @@-{-# OPTIONS_HADDOCK prune #-} {-# LANGUAGE BinaryLiterals #-} {-# LANGUAGE NumericUnderscores #-} {-# LANGUAGE OverloadedStrings #-}@@ -56,12 +55,12 @@ import qualified Data.Text.ICU.Normalize2 as ICU import System.IO.Unsafe (unsafePerformIO) --- | A BIP39 wordlist.-newtype Wordlist = Wordlist (PA.Array T.Text)- fi :: (Integral a, Num b) => a -> b fi = fromIntegral {-# INLINE fi #-}++-- | A BIP39 wordlist.+newtype Wordlist = Wordlist (PA.Array T.Text)  -- | Generate a BIP39 mnemonic from some entropy, using the default English --   wordlist.
ppad-bip39.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.0 name:               ppad-bip39-version:            0.1.0+version:            0.1.1 synopsis:           BIP39 mnemonic codes. license:            MIT license-file:       LICENSE