- commit
- c7245c3
- parent
- 2117f2c
- author
- Evgenii Akentev
- date
- 2023-06-23 21:55:54 +0400 +04
Change version, add upper bounds
2 files changed,
+10,
-6
+1,
-1
1@@ -1,5 +1,5 @@
2 # Revision history for debug-trace-file
3
4-## 0.1.0.0 -- 2023-06-23
5+## 1.0.0.0 -- 2023-06-23
6
7 * First version. Provides same functions as `Debug.Trace` but allows writing to files.
+9,
-5
1@@ -1,6 +1,6 @@
2-cabal-version: 3.8
3+cabal-version: 3.0
4 name: debug-trace-file
5-version: 0.1.0.0
6+version: 1.0.0.0
7 synopsis: Like Debug.Trace but writing to files.
8 description: Debug.Trace like functions to trace to files.
9 license: MIT
10@@ -11,6 +11,10 @@ category: Development
11 build-type: Simple
12 extra-doc-files: CHANGELOG.md
13
14+Source-repository head
15+ type: git
16+ location: git@git.ak3n.com:debug-trace-file.git
17+
18 common warnings
19 ghc-options: -Wall
20
21@@ -29,7 +33,7 @@ test-suite debug-trace-file-test
22 main-is: Main.hs
23 build-depends:
24 base >= 4.7 && < 5,
25- directory >= 1.3,
26- tasty >= 1.0,
27- tasty-golden >= 2.3,
28+ directory >= 1.3 && < 1.4,
29+ tasty >= 1.0 && < 1.5,
30+ tasty-golden >= 2.3 && < 3,
31 debug-trace-file