Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #75: require base >= 4.7, bump to 0.8.3, CHANGELOG stub #79

Merged
merged 1 commit into from
Feb 8, 2022
Merged
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
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