From ac716326c957c9e13f7bea81044a4d31ca2400f6 Mon Sep 17 00:00:00 2001 From: David Binder Date: Tue, 6 Feb 2024 22:50:37 +0100 Subject: [PATCH] Add upper bounds to all dependencies in cabal file --- CHANGELOG.md | 1 + eventlog2html.cabal | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9757c3a..f5378f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ Unreleased +---------- * Fix build error due to new exported function in blaze-html [#186](https://github.com/mpickering/eventlog2html/issues/186) diff --git a/eventlog2html.cabal b/eventlog2html.cabal index f5e1ea2..241c809 100644 --- a/eventlog2html.cabal +++ b/eventlog2html.cabal @@ -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