Skip to content

Commit

Permalink
Version 1.3.6 => 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriella439 committed Jul 28, 2017
1 parent 97a86eb commit 7e3bbc5
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
1.4.0

* BREAKING CHANGE: Remove unnecessary `Maybe` from type of `single`
* BREAKING CHANGE: Consolidate `searchable` and `executable`
* `stream{,WithErr}` now throws an `ExitCode` on failure

1.3.6

* Build against `ghc-8.2`
* Relax upper bound on `optparse-applicative` and `foldl`

1.3.5

* Increase upper bound on `foldl`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Turtle v1.3.6
# Turtle v1.4.0

Turtle is a reimplementation of the Unix command line environment in Haskell so
that you can use Haskell as a scripting language or a shell. Think of `turtle`
Expand Down
9 changes: 4 additions & 5 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock
, criterion, directory, doctest, foldl, hostname, managed
, optional-args, optparse-applicative, process, semigroups, stdenv
, stm, system-fileio, system-filepath, temporary, text, time
, directory, doctest, foldl, hostname, managed, optional-args
, optparse-applicative, process, semigroups, stdenv, stm
, system-fileio, system-filepath, temporary, text, time
, transformers, unix, unix-compat
}:
mkDerivation {
pname = "turtle";
version = "1.3.6";
version = "1.4.0";
src = ./.;
libraryHaskellDepends = [
ansi-wl-pprint async base bytestring clock directory foldl hostname
Expand All @@ -15,7 +15,6 @@ mkDerivation {
unix-compat
];
testHaskellDepends = [ base doctest system-filepath temporary ];
benchmarkHaskellDepends = [ base criterion text ];
description = "Shell programming, Haskell-style";
license = stdenv.lib.licenses.bsd3;
}
2 changes: 1 addition & 1 deletion turtle.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: turtle
Version: 1.3.6
Version: 1.4.0
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
Expand Down

0 comments on commit 7e3bbc5

Please sign in to comment.