[commit: packages/array] master: Bump `base` constraint and convert changelog to MD (bfb4885)
git at git.haskell.org
git at git.haskell.org
Tue Sep 9 14:15:08 UTC 2014
Repository : ssh://git@git.haskell.org/array
On branch : master
Link : http://git.haskell.org/packages/array.git/commitdiff/bfb488592cf5c92a6970eff64b9495970464014b
>---------------------------------------------------------------
commit bfb488592cf5c92a6970eff64b9495970464014b
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date: Tue Sep 9 16:13:17 2014 +0200
Bump `base` constraint and convert changelog to MD
>---------------------------------------------------------------
bfb488592cf5c92a6970eff64b9495970464014b
array.cabal | 13 ++++---------
changelog | 23 -----------------------
changelog.md | 30 ++++++++++++++++++++++++++++++
3 files changed, 34 insertions(+), 32 deletions(-)
diff --git a/array.cabal b/array.cabal
index 68e826e..c6b732d 100644
--- a/array.cabal
+++ b/array.cabal
@@ -1,6 +1,6 @@
name: array
-version: 0.5.0.0
--- GHC 7.6.1 released with 0.4.0.1
+version: 0.5.0.1
+-- NOTE: Don't forget to update ./changelog.md
license: BSD3
license-file: LICENSE
maintainer: libraries at haskell.org
@@ -17,17 +17,12 @@ description:
immutable arrays and 'MArray' of arrays mutable within appropriate
monads, as well as some instances of these classes.
-extra-source-files: changelog
+extra-source-files: changelog.md
source-repository head
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
other-extensions:
@@ -42,7 +37,7 @@ library
Trustworthy,
UnboxedTuples,
UnliftedFFITypes
- build-depends: base >= 4.5 && < 4.8
+ build-depends: base >= 4.5 && < 4.9
ghc-options: -Wall
exposed-modules:
Data.Array
diff --git a/changelog b/changelog
deleted file mode 100644
index 6654c9f..0000000
--- a/changelog
+++ /dev/null
@@ -1,23 +0,0 @@
--*-change-log-*-
-
-0.5.0.0 Nov 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
diff --git a/changelog.md b/changelog.md
new file mode 100644
index 0000000..5a04388
--- /dev/null
+++ b/changelog.md
@@ -0,0 +1,30 @@
+# Changelog for [`array` package](http://hackage.haskell.org/package/array)
+
+## 0.5.0.1 *TBA*
+
+ * Bundled with GHC 7.10.1
+
+## 0.5.0.0 *Nov 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