yesod-core 1.6.8 → 1.6.8.1
raw patch · 3 files changed
+17/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- test/fixtures/routes_with_line_continuations +11/−0
- yesod-core.cabal +2/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ # ChangeLog for yesod-core +## 1.6.8.1++* Add missing test file to tarball [#1563](https://github.com/yesodweb/yesod/issues/1563)+ ## 1.6.8 * In the route syntax, allow trailing backslashes to indicate line continuation. [#1558](https://github.com/yesodweb/yesod/pull/1558)
+ test/fixtures/routes_with_line_continuations view
@@ -0,0 +1,11 @@+-- This fixture to test line continuations is in a separate file+-- because when I put it in an in-line quasi-quotation, the compiler+-- performed the line continuations processing itself.++/foo1 \+ Foo1+/foo2 Foo2+/foo3 \+ Foo3 \+ GET POST \+ !foo
yesod-core.cabal view
@@ -1,5 +1,5 @@ name: yesod-core-version: 1.6.8+version: 1.6.8.1 license: MIT license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>@@ -17,6 +17,7 @@ test/YesodCoreTest/JsLoaderSites/Bottom.hs test/en.msg test/test.hs+ test/fixtures/routes_with_line_continuations ChangeLog.md README.md