splint 1.0.1.2 → 1.0.1.3
raw patch · 3 files changed
+19/−29 lines, 3 filesdep ~basedep ~containersdep ~ghcPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, containers, ghc, hlint
API changes (from Hackage documentation)
Files
- LICENSE.markdown +1/−1
- README.markdown +1/−1
- splint.cabal +17/−27
LICENSE.markdown view
@@ -1,4 +1,4 @@-Copyright 2020 Taylor Fausak+Copyright 2021 Taylor Fausak Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above
README.markdown view
@@ -1,6 +1,6 @@ # Splint -[](https://travis-ci.org/tfausak/splint)+[](https://github.com/tfausak/splint/actions/new) [](https://hackage.haskell.org/package/splint) [](https://www.stackage.org/package/splint)
splint.cabal view
@@ -1,7 +1,7 @@-cabal-version: 2.2+cabal-version: >= 1.10 name: splint-version: 1.0.1.2+version: 1.0.1.3 synopsis: HLint as a GHC source plugin. description:@@ -21,40 +21,30 @@ location: https://github.com/tfausak/splint type: git -common basics+library+ build-depends:+ base >= 4.13.0 && < 4.16+ , containers >= 0.6.2 && < 0.7+ , ghc >= 8.8.4 && < 8.11 || >= 9.0.1 && < 9.1+ , hlint >= 3.1.6 && < 3.3+ , stm >= 2.5.0 && < 2.6 default-language: Haskell2010+ exposed-modules: Splint ghc-options: -Weverything- -Wno-all-missed-specialisations -Wno-implicit-prelude+ -Wno-missing-deriving-strategies -Wno-missing-exported-signatures- -Wno-missing-import-lists- -Wno-safe -Wno-unsafe-- if impl(ghc >= 8.8)- ghc-options:- -Wno-missing-deriving-strategies-- if impl(ghc >= 8.10)- ghc-options:- -Wno-missing-safe-haskell-mode- -Wno-prepositive-qualified-module--library- import: basics-- build-depends:- base >= 4.12.0 && < 4.15- , containers >= 0.6.0 && < 0.7- , ghc >= 8.6.1 && < 8.11- , hlint >= 3.0 && < 3.3- , stm >= 2.5.0 && < 2.6- exposed-modules: Splint hs-source-dirs: src/lib other-modules: Splint.Parser - if impl(ghc == 8.10.*)+ if impl(ghc >= 8.10) other-modules: Splint.Parser.Native else other-modules: Splint.Parser.Fallback++ if impl(ghc >= 8.10)+ ghc-options:+ -Wno-missing-safe-haskell-mode+ -Wno-prepositive-qualified-module