packages feed

brainfuck 0.1 → 0.1.0.1

raw patch · 2 files changed

+5/−5 lines, 2 filesdep ~basenew-uploaderPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

Dependency ranges changed: base

API changes (from Hackage documentation)

+ Language.Brainfuck: coreSize :: Int
+ Language.Brainfuck: halt :: IO ()
+ Language.Brainfuck: updateByte :: MArray IOUArray Word8 m => BF -> (Word8 -> Word8) -> m BF

Files

Language/Brainfuck.hs view
@@ -19,6 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA -} +{-# LANGUAGE FlexibleContexts #-} module Language.Brainfuck where  import Data.Array.IO
brainfuck.cabal view
@@ -1,10 +1,9 @@ name:                brainfuck-version:             0.1-+version:             0.1.0.1 license:             GPL license-file:        LICENSE author:              Jason Dagit <dagit@codersbase.com>--- maintainer:          Cale+maintainer:          Nikolay Amiantov <ab@fmap.me>  stability:           Stable category:            Compilers/Interpreters@@ -14,7 +13,7 @@  build-type:          Simple Cabal-Version:       >= 1.2-tested-with:         GHC==6.8.2+tested-with:         GHC==7.10.1  executable              bf    main-is:             Main.hs@@ -23,7 +22,7 @@ library    exposed-modules:     Language.Brainfuck, Language.Brainfuck.Examples -   build-depends:       base, array, mtl+   build-depends:       base <4.9, array, mtl     ghc-options:         -Wall    ghc-prof-options:    -prof -auto-all