aura 2.0.5 → 2.0.6
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- aura.cabal +1/−1
- exec/Flags.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Aura Changelog +## 2.0.6 (2020-02-16)++- Fixed the broken `-S`.+ ## 2.0.5 (2020-02-16) - Fixed a bug that prevented `-Syuu` and `-Scc`.
aura.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: aura-version: 2.0.5+version: 2.0.6 synopsis: A secure package manager for Arch Linux and the AUR, written in Haskell.
exec/Flags.hs view
@@ -423,7 +423,7 @@ unneeded = flag' RemoveUnneeded (long "unneeded" <> short 'u' <> hidden <> help "Remove unneeded packages.") sync :: Parser PacmanOp-sync = bigS *> (Sync <$> (fmap Left mods <|> fmap (Right . S.map PkgName) manyArgs) <*> (S.fromList <$> many (ref <|> ign <|> igg)))+sync = bigS *> (Sync <$> (fmap (Right . S.map PkgName) manyArgs <|> fmap Left mods) <*> (S.fromList <$> many (ref <|> ign <|> igg))) where bigS = flag' () (long "sync" <> short 'S' <> help "Install official packages.") ref = flag' SyncRefresh (long "refresh" <> short 'y' <> hidden <> help "Update the package database.") mods = NEL.fromList <$> some (cln <|> gps <|> inf <|> lst <|> sch <|> upg <|> dnl)