Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add upper bounds to all dependencies in cabal file
Browse files Browse the repository at this point in the history
BinderDavid committed Jun 6, 2024
1 parent 368c2aa commit ac71632
Showing 2 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Unreleased
----------

* Fix build error due to new exported function in blaze-html [#186](https://github.com/mpickering/eventlog2html/issues/186)

22 changes: 11 additions & 11 deletions eventlog2html.cabal
Original file line number Diff line number Diff line change
@@ -41,25 +41,25 @@ Library
array >= 0.5.3 && < 0.6,
base >= 4 && < 5,
blaze-html >= 0.9.1 && < 0.10,
blaze-markup >= 0.8 && < 0.9,
bytestring >= 0.10.8 && < 0.13,
blaze-markup,
containers >= 0.5.0 && < 0.8,
file-embed >= 0.0.11 && < 0.1,
filepath >= 1.4.2 && < 1.6,
ghc-events >= 0.19.0 && < 0.20,
ghc-heap >= 9 && < 10,
hashable >= 1.0 && < 1.5,
hashtables >= 1.2.3 && < 1.4,
hvega >= 0.11.0 && < 0.13,
mtl >= 2.2.2 && < 2.4,
optparse-applicative >= 0.14.3 && < 0.19,
raw-strings-qq >= 1.1 && < 1.2,
semigroups >= 0.18 && < 0.21,
statistics-linreg >= 0.3 && < 0.4,
text >= 1.2.3 && < 1.3 || >= 2.0 && < 2.2,
time >= 1.8.0 && < 2.0,
vector >= 0.11,
trie-simple >= 0.4,
hashable >= 1.0,
statistics-linreg >= 0.3,
ghc-heap,
raw-strings-qq
trie-simple >= 0.4 && < 0.5,
vector >= 0.11 && < 0.14

GHC-options: -Wall
default-language: Haskell2010
@@ -91,12 +91,12 @@ Executable eventlog2html
HS-source-dirs: main
Main-is: Main.hs
build-depends:
aeson,
base,
eventlog2html,
aeson,
githash >= 0.1.6.2,
text,
filepath
filepath,
githash >= 0.1.6.2 && < 0.2,
text
other-modules: Paths_eventlog2html
autogen-modules: Paths_eventlog2html

0 comments on commit ac71632

Please sign in to comment.