Skip to content

Commit

Permalink
Ready 0.1.0.1
Browse files Browse the repository at this point in the history
Ready package for version 0.1.0.1 by bumping resolver and compiler
versions, and adding bounds to dependencies.
  • Loading branch information
pgujjula committed Aug 24, 2023
1 parent 7f7973e commit 47d1d05
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 17 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,19 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.4.4
- compiler: ghc-9.6.2
compilerKind: ghc
compilerVersion: 9.4.4
compilerVersion: 9.6.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.2.5
- compiler: ghc-9.4.5
compilerKind: ghc
compilerVersion: 9.2.5
compilerVersion: 9.4.5
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.2.8
compilerKind: ghc
compilerVersion: 9.2.8
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.0.2
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 6 additions & 6 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: primecount
version: 0.1.0.0
version: 0.1.0.1
synopsis: Bindings to the primecount library
github: "pgujjula/primecount-haskell"
license: BSD-3-Clause
Expand All @@ -10,7 +10,7 @@ category: Math, Number Theory
description: Please see the README on Github at
<https://github.com/pgujjula/primecount-haskell#readme>

tested-with: GHC ==8.10.7 || ==9.0.1 || ==9.2.5 || ==9.4.4
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.5 || ==9.6.2
extra-source-files:
- README.md
- ChangeLog.md
Expand Down Expand Up @@ -50,9 +50,9 @@ tests:
main: Main.hs
dependencies:
- primecount
- silently
- tasty
- tasty-hunit
- silently >= 1.2 && < 1.3
- tasty >= 1.4 && < 1.5
- tasty-hunit >= 0.10 && < 0.11
other-modules:
- Test.Math.NumberTheory.Prime.Count

Expand All @@ -62,7 +62,7 @@ benchmarks:
main: Main.hs
dependencies:
- primecount
- tasty-bench
- tasty-bench >= 0.3 && < 0.4
when:
- condition: false
other-modules: Paths_primecount
12 changes: 6 additions & 6 deletions primecount.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 2.2
-- 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
Expand All @@ -18,7 +18,7 @@ license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with:
GHC ==8.10.7 || ==9.0.1 || ==9.2.5 || ==9.4.4
GHC ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.5 || ==9.6.2
extra-source-files:
README.md
ChangeLog.md
Expand Down Expand Up @@ -55,9 +55,9 @@ test-suite primecount-tests
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
Expand All @@ -71,5 +71,5 @@ benchmark primecount-bench
build-depends:
base >=4.7 && <5.0
, primecount
, tasty-bench
, tasty-bench ==0.3.*
default-language: Haskell2010
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resolver: lts-19.15
resolver: lts-21.4

packages:
- '.'

0 comments on commit 47d1d05

Please sign in to comment.