Skip to content

Commit

Permalink
Merge pull request #79 from andreasabel/issue75-base-lower-bound
Browse files Browse the repository at this point in the history
Fix #75: require base >= 4.7, bump to 0.8.3, CHANGELOG stub
  • Loading branch information
CetinSert authored Feb 8, 2022
2 parents 37f12ff + 5aa0f9b commit 5620bbf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 0.8.3

- Dropped support for GHC < 7.8.
- Tested with GHC 7.8 - 9.2.
- TODO: new module `System.Clock.Seconds`
- TODO: new functions
- TODO: other changes
21 changes: 12 additions & 9 deletions clock.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >= 1.10
name: clock
version: 0.8.2
version: 0.8.3
stability: stable
synopsis: High-resolution clock functions: monotonic, realtime, cputime.
description: A package for convenient access to high-resolution clock and
Expand Down Expand Up @@ -65,6 +65,9 @@ tested-with:
GHC == 7.10.3
GHC == 7.8.4

extra-source-files:
CHANGELOG.md


source-repository head
type: git
Expand All @@ -77,13 +80,13 @@ flag llvm


library
default-language: Haskell2010
if impl (ghc < 7.6)
build-depends: ghc-prim
build-depends: base >= 4.4 && < 5
build-depends: base >= 4.7 && < 5

exposed-modules: System.Clock
System.Clock.Seconds
default-extensions: DeriveGeneric
System.Clock.Seconds

default-language: Haskell2010
default-extensions: DeriveGeneric
DeriveDataTypeable
ForeignFunctionInterface
ScopedTypeVariables
Expand All @@ -99,8 +102,8 @@ library


test-suite test
default-language: Haskell2010
default-extensions: ScopedTypeVariables
default-language: Haskell2010
default-extensions: ScopedTypeVariables
GeneralizedNewtypeDeriving
StandaloneDeriving
type:
Expand Down

0 comments on commit 5620bbf

Please sign in to comment.