From ca602d11bfc140800b5c4ef0c7c2305486fef8a8 Mon Sep 17 00:00:00 2001 From: Jason Whittle Date: Mon, 8 Oct 2018 16:53:14 -0400 Subject: [PATCH] Bump minor version. --- yesod-core/Yesod/Routes/Parse.hs | 4 +++- yesod-core/yesod-core.cabal | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/yesod-core/Yesod/Routes/Parse.hs b/yesod-core/Yesod/Routes/Parse.hs index 5b325590..dcc9e501 100644 --- a/yesod-core/Yesod/Routes/Parse.hs +++ b/yesod-core/Yesod/Routes/Parse.hs @@ -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 diff --git a/yesod-core/yesod-core.cabal b/yesod-core/yesod-core.cabal index 83eb5f7a..95cbe114 100644 --- a/yesod-core/yesod-core.cabal +++ b/yesod-core/yesod-core.cabal @@ -1,5 +1,5 @@ name: yesod-core -version: 1.6.7 +version: 1.6.8 license: MIT license-file: LICENSE author: Michael Snoyman