aur 7.0.5 → 7.0.6
raw patch · 3 files changed
+9/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- aur.cabal +2/−2
- tests/Test.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## 7.0.6 (2021-02-26)++#### Fixed++- Broken tests.+ ## 7.0.5 (2020-10-27) #### Added
aur.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: aur-version: 7.0.5+version: 7.0.6 synopsis: Access metadata from the Arch Linux User Repository. description: Access package information from Arch Linux's AUR via its RPC interface. The@@ -51,5 +51,5 @@ build-depends: , aur , http-client-tls ^>=0.3- , tasty >=0.11 && <1.4+ , tasty >=0.11 && <1.5 , tasty-hunit >=0.9 && <0.11
tests/Test.hs view
@@ -18,7 +18,7 @@ ] infoTest :: Manager -> Assertion-infoTest m = info m ["aura", "aura-bin", "libc++"] >>= \x -> (length <$> x) @?= Right 3+infoTest m = info m ["aura", "aura-bin"] >>= \x -> (length <$> x) @?= Right 2 infoTest' :: Manager -> Assertion infoTest' m = info m ["aura1234567"] >>= \x -> (null <$> x) @?= Right True