diff --git a/.github/workflows/stack.yml b/.github/workflows/stack.yml index a6caea0..9d8d23b 100644 --- a/.github/workflows/stack.yml +++ b/.github/workflows/stack.yml @@ -56,7 +56,7 @@ jobs: mkdir -p bin && cp $(stack path --local-install-root)/bin/* bin && chmod +x bin/* mkdir -p dist/haddock && mv $(stack path --local-install-root)/doc/* dist/haddock sed -i 's@href="[^"]*/doc/\([^"]*.html\)"@href="\1"@g' dist/haddock/index.html - wget -O Makefile https://raw.githubusercontent.com/input-output-hk/adrestia/master/.haskell/coverage/Makefile + wget -O Makefile https://raw.githubusercontent.com/input-output-hk/adrestia/7958e55b6a554f7514e2d29a92c144cc347cc91d/.haskell/coverage/Makefile mkdir -p .coverage && touch .coverage/template.overlay DESTDIR=dist/coverage make report && DESTDIR=dist/coverage make badge env: diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index b6f7e63..abfbcfb 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -20,8 +20,8 @@ jobs: - name: ✍ Check hlint and stylish run: | - curl -sSL https://raw.github.com/ndmitchell/hlint/master/misc/run.sh | sh -s . - curl -sSL https://raw.github.com/input-output-hk/adrestia/master/.haskell/stylish-haskell.sh | VERSION=v0.11.0.0 sh -s $(git ls-files '*.hs') -i + curl -sSL https://raw.github.com/ndmitchell/hlint/8e10b5143acf97fbdf9baff40ee2da93881e0bf8/misc/run.sh | sh -s . + curl -sSL https://raw.github.com/input-output-hk/adrestia/7958e55b6a554f7514e2d29a92c144cc347cc91d/.haskell/stylish-haskell.sh | VERSION=v0.11.0.0 sh -s $(git ls-files '*.hs') -i if [ -z "$(git status --porcelain)" ]; then echo "No style errors detected." else diff --git a/bech32-th/bech32-th.cabal b/bech32-th/bech32-th.cabal index e22389a..287c438 100644 --- a/bech32-th/bech32-th.cabal +++ b/bech32-th/bech32-th.cabal @@ -37,7 +37,7 @@ library ghc-options: -Werror build-depends: base >= 4.11.1.0 && < 5 - , bech32 >= 1.1.1 + , bech32 >= 1.1.2 , template-haskell , text hs-source-dirs: diff --git a/bech32/ChangeLog.md b/bech32/ChangeLog.md index d948acc..bdb77a8 100644 --- a/bech32/ChangeLog.md +++ b/bech32/ChangeLog.md @@ -1,6 +1,11 @@ # Changelog +## [1.1.2] - 2021-11-05 + +### Fixed + +- Strip whitespaces from bech32 stdin to satisfy Windows `echo` command. ## [1.1.1] - 2021-06-11 diff --git a/bech32/bech32.cabal b/bech32/bech32.cabal index fefd6ad..039c0ea 100644 --- a/bech32/bech32.cabal +++ b/bech32/bech32.cabal @@ -1,5 +1,5 @@ name: bech32 -version: 1.1.1 +version: 1.1.2 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.