hpc-coveralls 1.0.4 → 1.0.5
raw patch · 3 files changed
+8/−4 lines, 3 filesdep ~aesonPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- hpc-coveralls.cabal +3/−3
- src/Trace/Hpc/Coveralls/Paths.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+[1.0.5](https://github.com/guillaume-nargeot/hpc-coveralls/issues?q=milestone:v1.0.5+is:closed)+-----+* Allow aeson 1.0 (issue #60)+ [1.0.4](https://github.com/guillaume-nargeot/hpc-coveralls/issues?q=milestone:v1.0.4+is:closed) ----- * Fix dependencies to allow aeson 0.11 (issue #58)
hpc-coveralls.cabal view
@@ -1,5 +1,5 @@ name: hpc-coveralls-version: 1.0.4+version: 1.0.5 synopsis: Coveralls.io support for Haskell. description: This utility converts and sends Haskell projects hpc code coverage to@@ -55,7 +55,7 @@ Trace.Hpc.Coveralls.GitInfo, Trace.Hpc.Coveralls.Paths build-depends:- aeson >= 0.7.1 && <0.12,+ aeson >= 0.7.1 && <1.1, base >= 4 && < 5, bytestring >= 0.10 && <0.11, Cabal,@@ -76,7 +76,7 @@ hs-source-dirs: src main-is: HpcCoverallsMain.hs build-depends:- aeson >= 0.7.1 && <0.12,+ aeson >= 0.7.1 && <1.1, base >= 4 && < 5, bytestring >= 0.10 && <0.11, Cabal,
src/Trace/Hpc/Coveralls/Paths.hs view
@@ -38,7 +38,7 @@ -> String -- ^ hpc output base directory -> String -- ^ test suite name -> TixModule -- ^ tix module- -> FilePath -- ^ mix file patch+ -> FilePath -- ^ mix file path getMixPath mPkgNameVer hpcDir testSuiteName tix = mixDir hpcDir ++ dirName ++ "/" where dirName = case span (/= '/') modName of (_, []) -> testSuiteName