-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revise upper version bounds for dependencies. (#71)
- Loading branch information
Showing
5 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
- macOS-latest | ||
- windows-latest | ||
cabal: | ||
- 3.10.2.0 | ||
- '3.10' | ||
ghc: | ||
- '8.10' | ||
- '9.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
cabal-version: 3.0 | ||
name: bech32-th | ||
version: 1.1.5 | ||
version: 1.1.6 | ||
synopsis: Template Haskell extensions to the Bech32 library. | ||
description: Template Haskell extensions to the Bech32 library, including | ||
quasi-quoters for compile-time checking of Bech32 string | ||
literals. | ||
author: IOHK Engineering Team | ||
maintainer: [email protected], [email protected], [email protected] | ||
maintainer: [email protected], [email protected], [email protected] | ||
copyright: 2020-2023 IOHK | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
cabal-version: 3.0 | ||
name: bech32 | ||
version: 1.1.5 | ||
version: 1.1.6 | ||
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. | ||
author: IOHK Engineering Team | ||
maintainer: [email protected], [email protected], [email protected] | ||
maintainer: [email protected], [email protected], [email protected] | ||
copyright: 2017 Marko Bencun, 2019-2023 IOHK | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
|
@@ -40,7 +40,7 @@ common dependency-base58-bytestring | |
common dependency-bytestring | ||
build-depends:bytestring >= 0.10.12.0 && < 0.13 | ||
common dependency-containers | ||
build-depends:containers >= 0.6.5.1 && < 0.7 | ||
build-depends:containers >= 0.6.5.1 && < 0.8 | ||
common dependency-deepseq | ||
build-depends:deepseq >= 1.4.4.0 && < 1.6 | ||
common dependency-extra | ||
|
@@ -58,7 +58,7 @@ common dependency-prettyprinter-ansi-terminal | |
common dependency-process | ||
build-depends:process >= 1.6.13.2 && < 1.7 | ||
common dependency-QuickCheck | ||
build-depends:QuickCheck >= 2.14.3 && < 2.15 | ||
build-depends:QuickCheck >= 2.14.3 && < 2.16 | ||
common dependency-text | ||
build-depends:text >= 1.2.4.1 && < 2.2 | ||
common dependency-vector | ||
|