brainfuck 0.1.0.3 → 0.1.0.4
raw patch · 3 files changed
+8/−7 lines, 3 filesdep +brainfuckPVP ok
version bump matches the API change (PVP)
Dependencies added: brainfuck
API changes (from Hackage documentation)
Files
- LICENSE +1/−1
- Language/Brainfuck.hs +2/−1
- brainfuck.cabal +5/−5
LICENSE view
@@ -2,7 +2,7 @@ Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc.- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
Language/Brainfuck.hs view
@@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -}+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1307 USA -} {-# LANGUAGE FlexibleContexts #-} module Language.Brainfuck where@@ -29,6 +29,7 @@ import Data.Char ( ord, chr ) import Data.List ( groupBy ) import Data.Maybe ( catMaybes )+import Control.Monad import Control.Monad.State {- | The complete BF language:
brainfuck.cabal view
@@ -1,5 +1,5 @@ name: brainfuck-version: 0.1.0.3+version: 0.1.0.4 license: GPL license-file: LICENSE author: Jason Dagit <dagit@codersbase.com>@@ -12,7 +12,7 @@ written in the pure, lazy, functional language Haskell. build-type: Simple-cabal-version: >= 1.6+cabal-version: >= 1.10 tested-with: GHC==8.0.1 source-repository head@@ -21,11 +21,11 @@ executable bf main-is: Main.hs- build-depends: base>3 && <5, unix, array, mtl+ default-language: Haskell2010+ build-depends: base>3 && <5, unix, array, mtl, brainfuck library exposed-modules: Language.Brainfuck, Language.Brainfuck.Examples-+ default-language: Haskell2010 build-depends: base>3 && <5, array, mtl- ghc-options: -Wall