From: Evgenii Akentev Date: Fri, 23 Jun 2023 17:55:54 +0000 (+0400) Subject: Change version, add upper bounds X-Git-Url: https://git.ak3n.com/?a=commitdiff_plain;h=c7245c30050240cf3d7643374287a3f15127be54;p=debug-trace-file.git Change version, add upper bounds --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a7dae2..5c81490 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # Revision history for debug-trace-file -## 0.1.0.0 -- 2023-06-23 +## 1.0.0.0 -- 2023-06-23 * First version. Provides same functions as `Debug.Trace` but allows writing to files. diff --git a/debug-trace-file.cabal b/debug-trace-file.cabal index 0beb27b..fd16b89 100644 --- a/debug-trace-file.cabal +++ b/debug-trace-file.cabal @@ -1,6 +1,6 @@ -cabal-version: 3.8 +cabal-version: 3.0 name: debug-trace-file -version: 0.1.0.0 +version: 1.0.0.0 synopsis: Like Debug.Trace but writing to files. description: Debug.Trace like functions to trace to files. license: MIT @@ -11,6 +11,10 @@ category: Development build-type: Simple extra-doc-files: CHANGELOG.md +Source-repository head + type: git + location: git@git.ak3n.com:debug-trace-file.git + common warnings ghc-options: -Wall @@ -29,7 +33,7 @@ test-suite debug-trace-file-test main-is: Main.hs build-depends: base >= 4.7 && < 5, - directory >= 1.3, - tasty >= 1.0, - tasty-golden >= 2.3, + directory >= 1.3 && < 1.4, + tasty >= 1.0 && < 1.5, + tasty-golden >= 2.3 && < 3, debug-trace-file