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 unneeded bounds in cabal files and syntax of tested-with #13

Merged
merged 2 commits into from
Apr 4, 2024
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
3 changes: 0 additions & 3 deletions tracing-effectful/cabal.project

This file was deleted.

7 changes: 3 additions & 4 deletions tracing-effectful/tracing-effectful.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ description:

build-type: Simple
extra-doc-files: CHANGELOG.md
tested-with:
GHC ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.4 || ==9.8.2
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.4, 9.8.2 }

common language
ghc-options: -Wall -Wcompat -Wno-unticked-promoted-constructors
Expand All @@ -32,8 +31,8 @@ library
build-depends:
, base <5
, effectful-core >=1.0.0.0 && <3.0.0.0
, exceptions <0.11
, tracing ==1.0.0.0
, exceptions >=0.10
, tracing >=1.0

hs-source-dirs: src

Expand Down
39 changes: 19 additions & 20 deletions tracing.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ maintainer: [email protected]
copyright: 2020 Matthieu Monsch
build-type: Simple
extra-source-files: README.md
tested-with:
GHC ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.4 || ==9.8.2
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.4, 9.8.2 }
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can do the same with tracing-effectful.cabal for consistency :)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done !


source-repository head
type: git
Expand All @@ -32,24 +31,24 @@ library

other-modules: Control.Monad.Trace.Internal
build-depends:
, aeson <=2.3
, base <5
, base16-bytestring <=1.1
, bytestring <=0.13
, case-insensitive <=1.3
, containers <=0.7
, exceptions <=0.11
, http-client <=0.8
, lifted-base <=0.3
, monad-control <=1.1
, mtl <=2.3.1
, network <=3.2
, random <=1.3
, stm <=2.6
, text <=2.1.1
, time <=1.13
, transformers <=0.6.1.0
, transformers-base <=0.5
aeson >= 2.0
, base >= 4.14 && < 5
, base16-bytestring >= 1.0
, bytestring >= 0.10
, case-insensitive >= 1.2
, containers >= 0.6
, exceptions >= 0.10
, http-client >= 0.5
, lifted-base >= 0.2.3
, monad-control >= 1.0
, mtl >= 2.2
, network >= 2.8
, random >= 1.1
, stm >= 2.5
, text >= 1.2
, time >= 1.8
, transformers >= 0.5
, transformers-base >= 0.4

ghc-options: -Wall
default-language: Haskell2010
Expand Down
Loading