# 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.
-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
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
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