From 2dc5594ad6ddd72ef2c0895bada252132843aaa0 Mon Sep 17 00:00:00 2001 From: Gabriel Gonzalez Date: Wed, 20 Jun 2018 18:33:33 -0700 Subject: [PATCH] =?UTF-8?q?Version=201.5.8=20=E2=86=92=201.5.9=20(#309)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ README.md | 2 +- default.nix | 2 +- turtle.cabal | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca4a9e9..f5d2f74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +1.5.9 + +* Add `symlink` + 1.5.8 * Bug fix: `invert` no longer rejects inputs where a prefix matches the inverted diff --git a/README.md b/README.md index 2ca806e..97fb323 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Turtle v1.5.8 +# Turtle v1.5.9 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 7b9b6f2..bab7958 100644 --- a/default.nix +++ b/default.nix @@ -6,7 +6,7 @@ }: mkDerivation { pname = "turtle"; - version = "1.5.8"; + version = "1.5.9"; src = ./.; libraryHaskellDepends = [ ansi-wl-pprint async base bytestring clock containers directory diff --git a/turtle.cabal b/turtle.cabal index 4471cc6..c2a92ca 100644 --- a/turtle.cabal +++ b/turtle.cabal @@ -1,5 +1,5 @@ Name: turtle -Version: 1.5.8 +Version: 1.5.9 Cabal-Version: >=1.10 Build-Type: Simple License: BSD3