Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Permit semirings 0.6 #32

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions ChangeLog.md
@@ -1,5 +1,9 @@
# Change log for galois-field

## 1.0.4

* Bump upper bound for semirings and bitvec.

## 1.0.3

* Add `fromU` for RootsOfUnity
Expand Down
12 changes: 6 additions & 6 deletions galois-field.cabal
Expand Up @@ -55,15 +55,15 @@ library
ghc-options: -freverse-errors -O2 -Wall
build-depends:
, base >=4.10 && <5
, bitvec ^>=1.0.2
, bitvec >=1.0.2 && < 1.2
, groups >=0.4.1 && <0.6
, integer-gmp ^>=1.0.2
, mod ^>=0.1.0
, MonadRandom ^>=0.5.1
, poly >=0.3.2 && <0.6
, protolude ^>=0.3
, QuickCheck >=2.13 && <2.15
, semirings ^>=0.5
, semirings >=0.5 && <0.7
, vector ^>=0.12.0
, wl-pprint-text ^>=1.2.0

Expand Down Expand Up @@ -101,7 +101,7 @@ test-suite galois-field-tests
ghc-options: -freverse-errors -O2 -Wall
build-depends:
, base >=4.10 && <5
, bitvec ^>=1.0.2
, bitvec >=1.0.2 && < 1.2
, galois-field
, groups >=0.4.1 && <0.6
, integer-gmp ^>=1.0.2
Expand All @@ -110,7 +110,7 @@ test-suite galois-field-tests
, poly >=0.3.2 && <0.6
, protolude ^>=0.3
, QuickCheck >=2.13 && <2.15
, semirings ^>=0.5
, semirings >=0.5 && <0.7
, tasty >=1.2 && <1.4
, tasty-quickcheck ^>=0.10
, vector ^>=0.12.0
Expand Down Expand Up @@ -150,7 +150,7 @@ benchmark galois-field-benchmarks
ghc-options: -freverse-errors -O2 -Wall
build-depends:
, base >=4.10 && <5
, bitvec ^>=1.0.2
, bitvec >=1.0.2 && < 1.2
, criterion ^>=1.5
, galois-field
, groups >=0.4.1 && <0.6
Expand All @@ -160,7 +160,7 @@ benchmark galois-field-benchmarks
, poly >=0.3.2 && <0.6
, protolude ^>=0.3
, QuickCheck >=2.13 && <2.15
, semirings ^>=0.5
, semirings >=0.5 && <0.7
, vector ^>=0.12.0
, wl-pprint-text ^>=1.2.0

Expand Down