-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackdiff.cabal
More file actions
82 lines (78 loc) · 2.57 KB
/
packdiff.cabal
File metadata and controls
82 lines (78 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
cabal-version: 2.2
name: packdiff
version: 0.1.0.0
synopsis: Find API changes between different versions of a package
description:
Packdiff compares different Git commits or Hackage versions of a package to
identify:
.
* Signature changes.
* Deprecated functions.
* Added or removed functions.
.
It helps you to:
.
* Generate API changelogs automatically.
* Generate API diff on pull requests.
* Compare new changes against published Hackage releases.
* Decide the new version of a package.
* Find breaking changes in the new release.
.
See the README for more details.
.
bug-reports: https://github.com/composewell/packdiff/issues
license: Apache-2.0
license-file: LICENSE
author: Composewell Technologies
maintainer: streamly@composewell.com
copyright: 2022 Composewell Technologies
category: Development, Package Management, Cabal, PVP
build-type: Simple
tested-with:
GHC==9.14.1
, GHC==9.12.4
, GHC==9.10.3
, GHC==9.8.4
, GHC==9.6.3
extra-doc-files: README.md, CHANGELOG.md
source-repository head
type: git
location: https://github.com/composewell/packdiff
common compile-options
default-language: Haskell2010
ghc-options: -Weverything
-Wno-all-missed-specialisations
-Wno-implicit-prelude
-Wno-missing-import-lists
-Wno-missing-deriving-strategies
-Wno-missing-kind-signatures
-Wno-missing-local-signatures
-Wno-missing-role-annotations
-Wno-missing-safe-haskell-mode
-Wno-missed-specialisations
-Wno-monomorphism-restriction
-Wno-prepositive-qualified-module
-Wno-unsafe
-Wno-x-partial
library
import: compile-options
exposed-modules: HoogleFileParser
, Diff
, Pretty
-- other-extensions:
build-depends: base >= 4.10 && < 4.23
, streamly-core >= 0.1.0 && < 0.4
, containers >= 0.6 && < 0.9
hs-source-dirs: src
default-language: Haskell2010
executable packdiff
import: compile-options
main-is: Main.hs
-- other-extensions:
build-depends: base
, streamly-core
, streamly-process >= 0.3.1 && < 0.5
, packdiff
, containers
hs-source-dirs: cli
default-language: Haskell2010