Bump minor version.

This commit is contained in:
Jason Whittle 2018-10-08 16:53:14 -04:00
parent 4e4efd1627
commit ca602d11bf
2 changed files with 4 additions and 2 deletions

View File

@ -285,7 +285,9 @@ dropBracket str@('{':x) = case break (== '}') x of
_ -> error $ "Unclosed bracket ('{'): " ++ str
dropBracket x = x
-- If this line ends with a backslash, concatenate it together with the next line.
-- | If this line ends with a backslash, concatenate it together with the next line.
--
-- @since 1.6.8
lineContinuations :: String -> [String] -> [String]
lineContinuations this [] = [this]
lineContinuations this below@(next:rest) = case unsnoc this of

View File

@ -1,5 +1,5 @@
name: yesod-core
version: 1.6.7
version: 1.6.8
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>