From 78cfa7ad3f33b783bb0fa48adda3d514214c19f1 Mon Sep 17 00:00:00 2001 From: Gabriel Gonzalez Date: Sat, 22 Sep 2018 11:38:59 -0700 Subject: [PATCH] =?UTF-8?q?Version=201.5.0=20=E2=86=92=201.5.11=20(#325)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- nix/turtle.nix | 2 +- turtle.cabal | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39fdee9..6b29916 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +1.5.11 + +* Don't forward broken pipe exceptions when using `inproc` + * See: https://github.com/Gabriel439/Haskell-Turtle-Library/pull/321 +* Increase upper bound on `stm` + * See: https://github.com/Gabriel439/Haskell-Turtle-Library/pull/321 +* Tutorial improvements: + * See: https://github.com/Gabriel439/Haskell-Turtle-Library/pull/322 + 1.5.10 * Increase upper bound on `doctest` and `criterion` diff --git a/README.md b/README.md index bf54038..bbd5961 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Turtle v1.5.10 +# Turtle v1.5.11 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` diff --git a/nix/turtle.nix b/nix/turtle.nix index 45e886b..22dfd55 100644 --- a/nix/turtle.nix +++ b/nix/turtle.nix @@ -6,7 +6,7 @@ }: mkDerivation { pname = "turtle"; - version = "1.5.10"; + version = "1.5.11"; src = ./..; libraryHaskellDepends = [ ansi-wl-pprint async base bytestring clock containers directory diff --git a/turtle.cabal b/turtle.cabal index c0c3898..b2bded3 100644 --- a/turtle.cabal +++ b/turtle.cabal @@ -1,5 +1,5 @@ Name: turtle -Version: 1.5.10 +Version: 1.5.11 Cabal-Version: >=1.10 Build-Type: Simple License: BSD3