hix 0.5.2 → 0.5.3
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- hix.cabal +1/−1
- lib/Hix/Options.hs +1/−1
hix.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: hix-version: 0.5.2+version: 0.5.3 synopsis: Haskell/Nix development build tools description: See https://hackage.haskell.org/package/hix/docs/Hix.html category: Build
lib/Hix/Options.hs view
@@ -273,7 +273,7 @@ name <- strOption (long "name" <> short 'n' <> help "The name of the new project and its main package") packages <- switch (long "packages" <> short 'p' <> help "Store packages in the 'packages/' subdirectory") hixUrl <- strOption (long "hix-url" <> help "The URL to the Hix repository" <> value def)- author <- strOption (long "author" <> short 'a' <> help "Your name")+ author <- strOption (long "author" <> short 'a' <> help "Your name" <> value "Author") pure NewOptions {config = NewProjectConfig {..}} bootstrapParser :: Parser BootstrapOptions