[commit: packages/array] master: Add `source-repository this` and changelog file (d38e2d7)
git at git.haskell.org
git
Fri Oct 11 21:04:41 UTC 2013
Repository : ssh://git at git.haskell.org/array
On branch : master
Link : http://git.haskell.org/packages/array.git/commitdiff/d38e2d7d4361574c6139741f1d9029c9e2f9acac
>---------------------------------------------------------------
commit d38e2d7d4361574c6139741f1d9029c9e2f9acac
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date: Fri Oct 11 15:00:45 2013 +0200
Add `source-repository this` and changelog file
Displaying this changelog file is supported by the new Hackage server.
Signed-off-by: Herbert Valerio Riedel <hvr at gnu.org>
>---------------------------------------------------------------
d38e2d7d4361574c6139741f1d9029c9e2f9acac
array.cabal | 13 ++++++++++---
changelog | 23 +++++++++++++++++++++++
2 files changed, 33 insertions(+), 3 deletions(-)
diff --git a/array.cabal b/array.cabal
index d0bdbe7..d8c3df8 100644
--- a/array.cabal
+++ b/array.cabal
@@ -14,9 +14,16 @@ description:
cabal-version: >=1.10
build-type: Simple
+extra-source-files: changelog
+
source-repository head
- type: git
- location: http://git.haskell.org/packages/array.git
+ type: git
+ location: http://git.haskell.org/packages/array.git
+
+source-repository this
+ type: git
+ location: http://git.haskell.org/packages/array.git
+ tag: array-0.5.0.0-release
library
default-language: Haskell2010
@@ -32,7 +39,7 @@ library
Trustworthy,
UnboxedTuples,
UnliftedFFITypes
- build-depends: base >= 4.6 && < 5
+ build-depends: base >= 4.5 && < 5
ghc-options: -Wall
exposed-modules:
Data.Array
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..157357c
--- /dev/null
+++ b/changelog
@@ -0,0 +1,23 @@
+-*-change-log-*-
+
+0.5.0.0 Oct 2013
+ * Update to Cabal 1.10 format
+ * Remove NHC and Hugs specific code
+ * Remove deprecated function exports `Data.Array.IO.castIOUArray`,
+ `Data.Array.MArray.unsafeFreeze`, `Data.Array.MArray.unsafeThaw`,
+ and `Data.Array.ST.castSTUArray`; These functions are still
+ available from the "Data.Array.Unsafe" module.
+
+0.4.0.1 Sep 2012
+ * Bundled with GHC 7.6.1
+ * Fix inline rule shadowing warnings
+
+0.4.0.0 Feb 2012
+ * Bundled with GHC 7.4.1
+ * Add support for SafeHaskell
+ * New "Data.Array.IO.Safe" module
+ * New "Data.Array.MArray.safe" module
+ * New "Data.Array.ST.safe" module
+ * New "Data.Array.Storable.Internals" module
+ * New "Data.Array.Storable.Safe" module
+ * New "Data.Array.Unsafe" module
More information about the ghc-commits
mailing list