packages feed

brainfuck-tut 0.7.0.1 → 0.7.0.2

raw patch · 6 files changed

+18/−14 lines, 6 filesnew-uploaderPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2014, Alejandro Cabrera+Copyright (c) 2014, Allele Dev  All rights reserved. @@ -13,7 +13,7 @@       disclaimer in the documentation and/or other materials provided       with the distribution. -    * Neither the name of Alejandro Cabrera nor the names of other+    * Neither the name of Allele Dev nor the names of other       contributors may be used to endorse or promote products derived       from this software without specific prior written permission. 
brainfuck-tut.cabal view
@@ -1,13 +1,13 @@ name:                brainfuck-tut-version:             0.7.0.1+version:             0.7.0.2 synopsis:            A simple BF interpreter. license:             BSD3 license-file:        LICENSE author:              Allele Dev maintainer:          allele.dev@gmail.com copyright:           (c) 2016 Allele Dev-homepage:            https://gitlab.com/cpp.cabrera/brainfuck-tut-bug-reports:         https://gitlab.com/cpp.cabrera/brainfuck-tut/issues+homepage:            https://gitlab.com/queertypes/brainfuck-tut+bug-reports:         https://gitlab.com/queertypes/brainfuck-tut/issues category:            Language build-type:          Simple cabal-version:       >=1.18@@ -17,7 +17,7 @@  source-repository head     type: git-    location: git clone https://gitlab.com/cpp.cabrera/brainfuck-tut.git+    location: git clone https://gitlab.com/queertypes/brainfuck-tut.git  library   exposed-modules:@@ -33,5 +33,9 @@   main-is:             Language/Brainfuck/Interpreter.hs   build-depends:       base >=4.7 && <5, array, brainfuck-tut   hs-source-dirs:      src+  other-modules:+    Language.Brainfuck.Eval,+    Language.Brainfuck.Parse,+    Language.Brainfuck.Types   ghc-options:         -Wall -O2   default-language:    Haskell2010
src/Language/Brainfuck/Eval.hs view
@@ -1,9 +1,9 @@ {-| Module      : Language.Brainfuck.Eval Description : Evaluator for the BF language-Copyright   : (c) Alejandro Cabrera, 2014+Copyright   : (c) Allele Dev, 2014 License     : BSD-3-Maintainer  : cpp.cabrera@gmail.com+Maintainer  : allele.dev@gmail.com Stability   : experimental Portability : POSIX -}
src/Language/Brainfuck/Interpreter.hs view
@@ -1,9 +1,9 @@ {-| Module      : Language.Brainfuck.Interpreter Description : Simple executable to evaluate BF expressions-Copyright   : (c) Alejandro Cabrera, 2014+Copyright   : (c) Allele Dev, 2014 License     : BSD-3-Maintainer  : cpp.cabrera@gmail.com+Maintainer  : allele.dev@gmail.com Stability   : experimental Portability : POSIX 
src/Language/Brainfuck/Parse.hs view
@@ -1,9 +1,9 @@ {-| Module      : Language.Brainfuck.Parse Description : Parser for the BF language-Copyright   : (c) Alejandro Cabrera, 2014+Copyright   : (c) Allele Dev, 2014 License     : BSD-3-Maintainer  : cpp.cabrera@gmail.com+Maintainer  : allele.dev@gmail.com Stability   : experimental Portability : POSIX -}
src/Language/Brainfuck/Types.hs view
@@ -1,9 +1,9 @@ {-| Module      : Language.Brainfuck.Types Description : Types used in the implementation of the BF language-Copyright   : (c) Alejandro Cabrera, 2014+Copyright   : (c) Allele Dev, 2014 License     : BSD-3-Maintainer  : cpp.cabrera@gmail.com+Maintainer  : allele.dev@gmail.com Stability   : experimental Portability : POSIX -}