packages feed

primecount 0.1.0.0 → 0.1.0.1

raw patch · 8 files changed

+20/−15 lines, 8 filesdep ~silentlydep ~tastydep ~tasty-bench

Dependency ranges changed: silently, tasty, tasty-bench, tasty-hunit

Files

ChangeLog.md view
@@ -1,5 +1,10 @@ # Changelog +## 0.1.0.1++### Updated+* CI now supports GHC versions 9.6.2, 9.4.5, 9.2.8, 9.0.2, and 8.10.7.+ ## 0.1.0.0  ### Added
README.md view
@@ -55,4 +55,4 @@  ## Bugs Report any bugs on the Github issue tracker, or by emailing-[primecount-haskell@mail.preetham.io](mailto:primecount-haskell@mail.preetham.io).+[libraries@mail.preetham.io](mailto:libraries@mail.preetham.io).
bench/Main.hs view
@@ -1,7 +1,7 @@ -- | -- Copyright   : 2022 Preetham Gujjula -- License     : BSD-3-Clause--- Maintainer  : primecount-haskell@mail.preetham.io+-- Maintainer  : libraries@mail.preetham.io -- Stability   : experimental module Main (main) where 
primecount.cabal view
@@ -1,24 +1,24 @@ cabal-version: 2.2 --- This file has been generated from package.yaml by hpack version 0.34.4.+-- This file has been generated from package.yaml by hpack version 0.35.1. -- -- see: https://github.com/sol/hpack  name:           primecount-version:        0.1.0.0+version:        0.1.0.1 synopsis:       Bindings to the primecount library description:    Please see the README on Github at <https://github.com/pgujjula/primecount-haskell#readme> category:       Math, Number Theory homepage:       https://github.com/pgujjula/primecount-haskell#readme bug-reports:    https://github.com/pgujjula/primecount-haskell/issues author:         Preetham Gujjula-maintainer:     primecount-haskell@mail.preetham.io+maintainer:     libraries@mail.preetham.io copyright:      2021 Preetham Gujjula license:        BSD-3-Clause license-file:   LICENSE build-type:     Simple tested-with:-    GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.1 || ==9.2.1+    GHC ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.5 || ==9.6.2 extra-source-files:     README.md     ChangeLog.md@@ -55,9 +55,9 @@   build-depends:       base >=4.7 && <5.0     , primecount-    , silently-    , tasty-    , tasty-hunit+    , silently ==1.2.*+    , tasty ==1.4.*+    , tasty-hunit ==0.10.*   default-language: Haskell2010  benchmark primecount-bench@@ -71,5 +71,5 @@   build-depends:       base >=4.7 && <5.0     , primecount-    , tasty-bench+    , tasty-bench ==0.3.*   default-language: Haskell2010
src/Math/NumberTheory/Prime/Count.hs view
@@ -1,8 +1,8 @@ -- | -- Module      : Math.NumberTheory.Prime.Count -- Copyright   : 2021 Preetham Gujjula--- License     : BSD-Clause--- Maintainer  : primecount-haskell@mail.preetham.io+-- License     : BSD-3-Clause+-- Maintainer  : libraries@mail.preetham.io -- Stability   : experimental -- -- This module provides a high-level, polymorphic interface to the primecount
src/Math/NumberTheory/Prime/Count/FFI.hs view
@@ -2,7 +2,7 @@ -- Module      : Math.NumberTheory.Prime.Count.FFI -- Copyright   : 2021 Preetham Gujjula -- License     : BSD-3-Clause--- Maintainer  : primecount-haskell@mail.preetham.io+-- Maintainer  : libraries@mail.preetham.io -- Stability   : experimental -- -- This module provides direct access to the C API of the primecount library.
test/Main.hs view
@@ -1,7 +1,7 @@ -- | -- Copyright   : 2021 Preetham Gujjula -- License     : BSD-3-Clause--- Maintainer  : primecount-haskell@mail.preetham.io+-- Maintainer  : libraries@mail.preetham.io -- Stability   : experimental module Main (main) where 
test/Test/Math/NumberTheory/Prime/Count.hs view
@@ -1,7 +1,7 @@ -- | -- Copyright   : 2021 Preetham Gujjula -- License     : BSD-3-Clause--- Maintainer  : primecount-haskell@mail.preetham.io+-- Maintainer  : libraries@mail.preetham.io -- Stability   : experimental module Test.Math.NumberTheory.Prime.Count (tests) where