[commit: packages/process] master, wip/issue15: Bump `base` constraint and convert changelog to MD (ec5df5c)
git at git.haskell.org
git at git.haskell.org
Thu Mar 19 11:36:43 UTC 2015
Repository : ssh://git@git.haskell.org/process
On branches: master,wip/issue15
Link : http://ghc.haskell.org/trac/ghc/changeset/ec5df5c5752e1cfa02d13685d912a26809ce6c81/process
>---------------------------------------------------------------
commit ec5df5c5752e1cfa02d13685d912a26809ce6c81
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date: Tue Sep 9 17:23:11 2014 +0200
Bump `base` constraint and convert changelog to MD
>---------------------------------------------------------------
ec5df5c5752e1cfa02d13685d912a26809ce6c81
changelog | 15 ---------------
changelog.md | 21 +++++++++++++++++++++
process.cabal | 15 +++++----------
3 files changed, 26 insertions(+), 25 deletions(-)
diff --git a/changelog b/changelog
deleted file mode 100644
index 1409eea..0000000
--- a/changelog
+++ /dev/null
@@ -1,15 +0,0 @@
-1.2.0.0 Dec 2013
-
- * Update to Cabal 1.10 format
- * Remove NHC specific code
- * Add support for `base-4.7.0.0`
- * Improve `showCommandForUser` to reduce redundant quoting
- * New functions `callProcess`, `callCommand`, `spawnProcess` and `spawnCommand`
- * Implement WCE handling according to http://www.cons.org/cracauer/sigint.html
- * New `delegate_ctlc` field in `CreateProcess` for WCE handling
- * Use `ExitFailure (-signum)` on Unix when a proc is terminated due to
- a signal.
- * Deprecate `module System.Cmd`
- * On non-Windows, the child thread now comunicates any errors back
- to the parent thread via pipes.
- * Fix deadlocks in `readProcess` and `readProcessWithExitCode`
diff --git a/changelog.md b/changelog.md
new file mode 100644
index 0000000..b361dea
--- /dev/null
+++ b/changelog.md
@@ -0,0 +1,21 @@
+# Changelog for [`process` package](http://hackage.haskell.org/package/process)
+
+## 1.2.0.1 *TBA*
+
+ * Add support for `base-4.8.0.0`
+
+## 1.2.0.0 *Dec 2013*
+
+ * Update to Cabal 1.10 format
+ * Remove NHC specific code
+ * Add support for `base-4.7.0.0`
+ * Improve `showCommandForUser` to reduce redundant quoting
+ * New functions `callProcess`, `callCommand`, `spawnProcess` and `spawnCommand`
+ * Implement WCE handling according to http://www.cons.org/cracauer/sigint.html
+ * New `delegate_ctlc` field in `CreateProcess` for WCE handling
+ * Use `ExitFailure (-signum)` on Unix when a proc is terminated due to
+ a signal.
+ * Deprecate `module System.Cmd`
+ * On non-Windows, the child thread now comunicates any errors back
+ to the parent thread via pipes.
+ * Fix deadlocks in `readProcess` and `readProcessWithExitCode`
diff --git a/process.cabal b/process.cabal
index e8d07b5..fef761c 100644
--- a/process.cabal
+++ b/process.cabal
@@ -1,10 +1,10 @@
name: process
-version: 1.2.0.0
--- GHC 7.6.1 released with 1.1.0.2
+version: 1.2.0.1
+-- NOTE: Don't forget to update ./changelog.md
license: BSD3
license-file: LICENSE
maintainer: libraries at haskell.org
-bug-reports: http://ghc.haskell.org/trac/ghc/newticket?component=libraries/process
+bug-reports: https://github.com/haskell/process/issues
synopsis: Process libraries
category: System
build-type: Configure
@@ -28,12 +28,7 @@ extra-tmp-files:
source-repository head
type: git
- location: http://git.haskell.org/packages/process.git
-
-source-repository this
- type: git
- location: http://git.haskell.org/packages/process.git
- tag: process-1.2.0.0-release
+ location: https://github.com/haskell/process.git
library
default-language: Haskell2010
@@ -62,7 +57,7 @@ library
ghc-options: -Wall
- build-depends: base >= 4.4 && < 4.8,
+ build-depends: base >= 4.4 && < 4.9,
directory >= 1.1 && < 1.3,
filepath >= 1.2 && < 1.4,
deepseq >= 1.1 && < 1.4
More information about the ghc-commits
mailing list