Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
vmchale committed Apr 17, 2018
1 parent de51d26 commit 321e349
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Justfile
Expand Up @@ -23,6 +23,9 @@ next:
git commit -am "next"
sn c .

install:
cp $(fd -t x 'madlang$' -IH) ~/.cabal/bin

ci:
@cabal new-build all
@cabal new-test
Expand All @@ -37,7 +40,7 @@ ci:
yamllint .yamllint

size:
sn d $(fd 'madlang$' -I | tail -n1)
sn d $(fd 'madlang$' -I | head -n2 | tail -n1)

manpages:
pandoc man/MANPAGE.md -s -t man -o man/madlang.1
Expand Down
2 changes: 1 addition & 1 deletion madlang.cabal
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: madlang
version: 4.0.2.6
version: 4.0.2.7
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2016-2018 Vanessa McHale
Expand Down
2 changes: 1 addition & 1 deletion src/Text/Madlibs/Ana/Resolve.hs
Expand Up @@ -84,7 +84,7 @@ runInFolderN n = replicateM n .** runInFolder

-- | Run in the appropriate folder
runInFolder :: [T.Text] -> FilePath -> FilePath -> IO T.Text
runInFolder = (either (pure . parseErrorPretty') (>>= (pure . show')) =<<) .** (fmap (fmap run) .** parseFile)
runInFolder = (either (pure . parseErrorPretty') (>>= pure) =<<) .** (fmap (fmap run) .** parseFile)

-- | Run based on text input, with nothing linked.
runText :: (MonadRandom m) => [T.Text] -> String -> T.Text -> m T.Text
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
@@ -1,5 +1,5 @@
---
resolver: nightly-2018-04-05
resolver: nightly-2018-04-10
packages:
- .
extra-deps:
Expand Down

0 comments on commit 321e349

Please sign in to comment.