From e1515aedeb8f551b71c4cfbfe1d380c275b8fc1c Mon Sep 17 00:00:00 2001 From: Gabriel Gonzalez Date: Thu, 18 Apr 2019 10:53:43 -0700 Subject: [PATCH] =?UTF-8?q?Version=201.5.13=20=E2=86=92=201.5.14=20(#346)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ README.md | 2 +- nix/turtle.nix | 2 +- turtle.cabal | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5e8115..84ce298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +1.5.14 + +* Fix `cptree` to copy symlinks instead of descending into them + * See: https://github.com/Gabriel439/Haskell-Turtle-Library/pull/344 +* Build against newer versions of `Win32` package + 1.5.13 * Fix `chmod` bug diff --git a/README.md b/README.md index e24eb00..bcfc027 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Turtle v1.5.13 +# `turtle` 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 48149df..7c3751b 100644 --- a/nix/turtle.nix +++ b/nix/turtle.nix @@ -6,7 +6,7 @@ }: mkDerivation { pname = "turtle"; - version = "1.5.13"; + version = "1.5.14"; src = ./..; libraryHaskellDepends = [ ansi-wl-pprint async base bytestring clock containers directory diff --git a/turtle.cabal b/turtle.cabal index 19759dc..70e7a4e 100644 --- a/turtle.cabal +++ b/turtle.cabal @@ -1,5 +1,5 @@ Name: turtle -Version: 1.5.13 +Version: 1.5.14 Cabal-Version: >=1.10 Build-Type: Simple License: BSD3