atto-lisp 0.2.2.1 → 0.2.2.2
raw patch · 4 files changed
+16/−8 lines, 4 filesdep ~attoparsecdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: attoparsec, base
API changes (from Hackage documentation)
Files
- Data/AttoLisp.hs +3/−3
- atto-lisp.cabal +4/−4
- changelog.md +8/−0
- test/test-attolisp.hs +1/−1
Data/AttoLisp.hs view
@@ -363,7 +363,7 @@ -- @data Foo = Foo Int deriving (Eq, Show) -- -- parseFoo :: Lisp -> 'Parser' Foo---parseFoo = struct \"foo\" Foo+-- parseFoo = struct \"foo\" Foo -- -- test = 'parseMaybe' parseFoo val == Just (Foo 23) -- where val = 'List' ['Symbol' \"foo\", 'Number' 23]@@ -633,13 +633,13 @@ The following characters are special: - whitespace: space, tab, newline, linefeed, return, page- + - terminating: ( ) , ` ' " ; - escaping: \ and | All remaining characters can be part of a symbol. If a symbol looks-like an number then it is one. Otherwise it's just a symbol.+like a number then it is one. Otherwise it's just a symbol. -}
atto-lisp.cabal view
@@ -1,5 +1,5 @@ name: atto-lisp-version: 0.2.2.1+version: 0.2.2.2 license: BSD3 license-file: LICENSE author: Thomas Schilling <nominolo@googlemail.com>@@ -17,7 +17,7 @@ library build-depends:- attoparsec >= 0.10 && < 0.13,+ attoparsec >= 0.10 && < 0.14, base >= 4.2 && < 5, blaze-builder >= 0.3 && < 0.5, blaze-textual >= 0.1 && < 0.3,@@ -35,12 +35,12 @@ Test-Suite test Type: exitcode-stdio-1.0 Main-is: test-attolisp.hs- Hs-Source-Dirs: test + Hs-Source-Dirs: test Build-depends: atto-lisp , attoparsec , base , bytestring- , text + , text , HUnit , test-framework , test-framework-hunit
changelog.md view
@@ -1,3 +1,11 @@+0.2.2.2++ * Allow attoparsec-0.13++0.2.2.1++ * Allow blaze-builder 0.4 and deepseq 1.4+ 0.2.2 * Allow attoparsec-0.12.* and text-1.[12].*
test/test-attolisp.hs view
@@ -6,7 +6,7 @@ import Control.Applicative import Data.AttoLisp-import qualified Data.Attoparsec as A+import qualified Data.Attoparsec.ByteString as A import qualified Data.Text as T import qualified Data.Text.Encoding as T import qualified Data.ByteString as B