Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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