[commit: packages/process] master: T11100: Updated version and changelog (81583c8)
git at git.haskell.org
git at git.haskell.org
Thu Apr 7 12:04:37 UTC 2016
Repository : ssh://git@git.haskell.org/process
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/81583c8547b22634d814351bcf7e5842ce6360d6/process
>---------------------------------------------------------------
commit 81583c8547b22634d814351bcf7e5842ce6360d6
Author: Tamar Christina <tamar at zhox.com>
Date: Mon Jan 25 08:21:33 2016 +0100
T11100: Updated version and changelog
>---------------------------------------------------------------
81583c8547b22634d814351bcf7e5842ce6360d6
System/Process/Internals.hs | 2 +-
changelog.md | 6 ++++++
process.cabal | 2 +-
3 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/System/Process/Internals.hs b/System/Process/Internals.hs
index 5554a88..39a7395 100644
--- a/System/Process/Internals.hs
+++ b/System/Process/Internals.hs
@@ -171,7 +171,7 @@ createPipe = createPipeInternal
-- | Create a pipe for interprocess communication and return a
-- @(readEnd, writeEnd)@ `FD` pair.
--
--- @since 1.2.1.0
+-- @since 1.4.2.0
createPipeFD :: IO (FD, FD)
createPipeFD = createPipeInternalFd
{-# INLINE createPipeFD #-}
diff --git a/changelog.md b/changelog.md
index b01b324..7a220f7 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,11 @@
# Changelog for [`process` package](http://hackage.haskell.org/package/process)
+## 1.4.2.0 *January 2016*
+
+* Added `createPipeFD` [#52](https://github.com/haskell/process/pull/52)
+ * New function `createPipeFD` added which returns a POSIX File Descriptor (CInt)
+ instead of a GHC Handle to a pipe
+
## 1.4.1.0 *November 2015*
* Use less CPP [#47](https://github.com/haskell/process/pull/47)
diff --git a/process.cabal b/process.cabal
index ee69285..15f6a65 100644
--- a/process.cabal
+++ b/process.cabal
@@ -1,5 +1,5 @@
name: process
-version: 1.4.1.0
+version: 1.4.2.0
-- NOTE: Don't forget to update ./changelog.md
license: BSD3
license-file: LICENSE
More information about the ghc-commits
mailing list