diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f6b64e..e812e38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +1.5.6 + +* Increase upper bound on `exceptions` + 1.5.5 * Increase upper bound on `criterion` diff --git a/README.md b/README.md index 8098785..c440c60 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Turtle v1.5.5 +# Turtle v1.5.6 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/default.nix b/default.nix index bd2c503..66f240d 100644 --- a/default.nix +++ b/default.nix @@ -6,7 +6,7 @@ }: mkDerivation { pname = "turtle"; - version = "1.5.5"; + version = "1.5.6"; src = ./.; libraryHaskellDepends = [ ansi-wl-pprint async base bytestring clock containers directory diff --git a/turtle.cabal b/turtle.cabal index d9ae6dd..7bbe88f 100644 --- a/turtle.cabal +++ b/turtle.cabal @@ -1,5 +1,5 @@ Name: turtle -Version: 1.5.5 +Version: 1.5.6 Cabal-Version: >=1.10 Build-Type: Simple License: BSD3