packages feed

integer-logarithms 1.0.2.1 → 1.0.2.2

raw patch · 4 files changed

+18/−9 lines, 4 filesdep ~QuickCheckdep ~basedep ~tasty

Dependency ranges changed: QuickCheck, base, tasty

Files

changelog.md view
@@ -1,3 +1,9 @@+1.0.2.2+-------++- GHC-8.6.1 compatible relase+- Fix compilation when `+check-bounds`+ 1.0.2.1 ------- 
integer-logarithms.cabal view
@@ -1,5 +1,5 @@ name:               integer-logarithms-version:            1.0.2.1+version:            1.0.2.2 cabal-version:      >= 1.10 author:             Daniel Fischer copyright:          (c) 2011 Daniel Fischer@@ -8,8 +8,8 @@ maintainer:         Oleg Grenrus <oleg.grenrus@iki.fi> build-type:         Simple stability:          Provisional-homepage:           https://github.com/phadej/integer-logarithms-bug-reports:        https://github.com/phadej/integer-logarithms/issues+homepage:           https://github.com/Bodigrim/integer-logarithms+bug-reports:        https://github.com/Bodigrim/integer-logarithms/issues  synopsis:           Integer logarithms. description:@@ -22,7 +22,7 @@  category:           Math, Algorithms, Number Theory -tested-with         :+tested-with:   GHC==7.0.4,   GHC==7.2.2,   GHC==7.4.2,@@ -31,7 +31,8 @@   GHC==7.10.3,   GHC==8.0.2,   GHC==8.2.2,-  GHC==8.4.1+  GHC==8.4.3,+  GHC==8.6.1  extra-source-files  : readme.md changelog.md @@ -49,7 +50,7 @@   default-language: Haskell2010   hs-source-dirs: src   build-depends:-    base >= 4.3 && < 4.12,+    base >= 4.3 && < 4.13,     array >= 0.3 && < 0.6,     ghc-prim < 0.6   if impl(ghc >= 7.10)@@ -80,7 +81,7 @@  source-repository head   type:     git-  location: https://github.com/phadej/integer-logarithms+  location: https://github.com/Bodigrim/integer-logarithms  test-suite spec   type:                 exitcode-stdio-1.0@@ -97,7 +98,7 @@   build-depends:     base,     integer-logarithms,-    tasty >= 0.10 && < 1.1,+    tasty >= 0.10 && < 1.2,     tasty-smallcheck >= 0.8 && < 0.9,     tasty-quickcheck >= 0.8 && < 0.11,     tasty-hunit >= 0.9 && < 0.11,
readme.md view
@@ -1,3 +1,5 @@ # integer-logarithms +[![Build Status](https://travis-ci.org/Bodigrim/integer-logarithms.svg?branch=master)](https://travis-ci.org/Bodigrim/integer-logarithms)+ `Math.NumberTheory.Logarithms` splitted out of [`arithmoi`](http://hackage.haskell.org/package/arithmoi)
src/Math/NumberTheory/Logarithms.hs view
@@ -302,7 +302,7 @@  #if CheckBounds unsafeAt :: (IArray a e, Ix i) => a i e -> i -> e-unsafeAt = (!)`+unsafeAt = (!) #endif  -------------------------------------------------------------------------------