Skip to content

Commit

Permalink
Version 1.4.4 → 1.4.5 (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriella439 authored Nov 18, 2017
1 parent 7dd0444 commit a91f57e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.4.5

* Add `grepText`, `uniq`, `nub`, `sort` to `Turtle.Prelude`
* Increase upper bound on `unix-compat`

1.4.4

* Fix small mistake in tutorial
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.4.4
# Turtle v1.4.5

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
13 changes: 6 additions & 7 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
{ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock
, criterion, directory, doctest, foldl, hostname, managed
, containers, 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.4.4";
version = "1.4.5";
src = ./.;
libraryHaskellDepends = [
ansi-wl-pprint async base bytestring clock directory foldl hostname
managed optional-args optparse-applicative process semigroups stm
system-fileio system-filepath temporary text time transformers unix
unix-compat
ansi-wl-pprint async base bytestring clock containers directory
foldl hostname managed optional-args optparse-applicative process
semigroups stm system-fileio system-filepath temporary text time
transformers unix 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.4.4
Version: 1.4.5
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
Expand Down

0 comments on commit a91f57e

Please sign in to comment.