diff options
author | PatrickBrisbin <> | 2021-04-07 16:22:00 (GMT) |
---|---|---|
committer | hdiff <hdiff@hdiff.luite.com> | 2021-04-07 16:22:00 (GMT) |
commit | f4ffb7a43a8522cb58774a62985afcc7e67dae8e (patch) | |
tree | 92f9df85e62f3ee40d27c4cf7d33ee0e93906242 | |
parent | 6e834e4d827ad04af00fa4218783198fa618aa3f (diff) |
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | hspec-junit-formatter.cabal | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ac82da5..8b0647a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ -## [_Unreleased_](https://github.com/freckle/hspec-junit-formatter/compare/v1.0.0.1...main) +## [_Unreleased_](https://github.com/freckle/hspec-junit-formatter/compare/v1.0.0.2...main) None +## [v1.0.0.2](https://github.com/freckle/hspec-junit-formatter/compare/v1.0.0.1...v1.0.0.2) + +- Less restrictive upper bound on `base` + ## [v1.0.0.1](https://github.com/freckle/hspec-junit-formatter/compare/v1.0.0.0...v1.0.0.1) - Bump `base` dep diff --git a/hspec-junit-formatter.cabal b/hspec-junit-formatter.cabal index 2a9376f..051b358 100644 --- a/hspec-junit-formatter.cabal +++ b/hspec-junit-formatter.cabal @@ -1,6 +1,6 @@ cabal-version: 1.12 name: hspec-junit-formatter -version: 1.0.0.1 +version: 1.0.0.2 license: MIT license-file: LICENSE copyright: 2021 Renaissance Learning Inc @@ -42,7 +42,7 @@ library TypeApplications TypeFamilies build-depends: - base >=4.14.1.0 && <4.15, + base >=4.14.1.0 && <5, conduit >=1.3.4.1 && <1.4, directory >=1.3.6.0 && <1.4, exceptions >=0.10.4 && <0.11, |