[commit: packages/stm] master: Bump to version 2.4.3 and convert changelog to markdown (fa48a38)

git at git.haskell.org git at git.haskell.org
Sat Mar 22 21:25:57 UTC 2014


Repository : ssh://git@git.haskell.org/stm

On branch  : master
Link       : http://git.haskell.org/packages/stm.git/commitdiff/fa48a38bd818cd075753342365f14bd66b1d5086

>---------------------------------------------------------------

commit fa48a38bd818cd075753342365f14bd66b1d5086
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date:   Sat Mar 22 22:19:34 2014 +0100

    Bump to version 2.4.3 and convert changelog to markdown
    
    The minor version bump is needed because new function were added since
    last released version 2.4.2.
    
    Signed-off-by: Herbert Valerio Riedel <hvr at gnu.org>


>---------------------------------------------------------------

fa48a38bd818cd075753342365f14bd66b1d5086
 changelog    |   38 --------------------------------------
 changelog.md |   38 ++++++++++++++++++++++++++++++++++++++
 stm.cabal    |    6 +++---
 3 files changed, 41 insertions(+), 41 deletions(-)

diff --git a/changelog b/changelog
deleted file mode 100644
index 1296a41..0000000
--- a/changelog
+++ /dev/null
@@ -1,38 +0,0 @@
--*-changelog-*-
-
-2.4.2.1  Oct 2013
-
-	* Updated behaviour of `newBroadcastTChanIO` to match
-	`newBroadcastTChan` in causing an error on a read from
-	the broadcast channel
-
-	* Add `mkWeakTVar`
-
-	* Add `isFullTBQueue`
-
-	* Fix `TChan` created via `newBroadcastTChanIO` to throw same
-	exception on a `readTChan` as when created via `newBroadcastTChan`
-
-2.4.2  Nov 2012
-
-	* Add "Control.Concurrent.STM.TSem" (transactional semaphore)
-
-	* Add Applicative/Alternative instances of STM for GHC <7.0
-
-        * Throw proper exception when `readTChan` called on a broadcast
-	`TChan`
-
-2.4  Jul 2012
-
-	* Add "Control.Concurrent.STM.TQueue" (a faster `TChan`)
-
-	* Add "Control.Concurrent.STM.TBQueue" (a bounded channel based on
-	`TQueue`)
-
-	* Add `Eq` instance for `TChan`
-
-	* Add `newBroadcastTChan` and `newBroadcastTChanIO`
-
-	* Some performance improvements for `TChan`
-
-	* Add `cloneTChan`
diff --git a/changelog.md b/changelog.md
new file mode 100644
index 0000000..8feaa2f
--- /dev/null
+++ b/changelog.md
@@ -0,0 +1,38 @@
+# Changelog for [`stm` package](http://hackage.haskell.org/package/stm)
+
+## 2.4.3  *Mar 2014*
+
+  * Update behaviour of `newBroadcastTChanIO` to match
+    `newBroadcastTChan` in causing an error on a read from the
+    broadcast channel
+
+  * Add `mkWeakTVar`
+
+  * Add `isFullTBQueue`
+
+  * Fix `TChan` created via `newBroadcastTChanIO` to throw same
+    exception on a `readTChan` as when created via `newBroadcastTChan`
+
+  * Update to Cabal 1.10 format
+
+## 2.4.2  *Nov 2012*
+
+  * Add `Control.Concurrent.STM.TSem` (transactional semaphore)
+
+  * Add Applicative/Alternative instances of STM for GHC <7.0
+
+  * Throw proper exception when `readTChan` called on a broadcast `TChan`
+
+## 2.4  *Jul 2012*
+
+  * Add `Control.Concurrent.STM.TQueue` (a faster `TChan`)
+
+  * Add `Control.Concurrent.STM.TBQueue` (a bounded channel based on `TQueue`)
+
+  * Add `Eq` instance for `TChan`
+
+  * Add `newBroadcastTChan` and `newBroadcastTChanIO`
+
+  * Some performance improvements for `TChan`
+
+  * Add `cloneTChan`
diff --git a/stm.cabal b/stm.cabal
index 998bb24..9313ced 100644
--- a/stm.cabal
+++ b/stm.cabal
@@ -1,5 +1,5 @@
 name:           stm
-version:        2.4.2.1
+version:        2.4.3
 license:        BSD3
 license-file:   LICENSE
 maintainer:     libraries at haskell.org
@@ -12,7 +12,7 @@ cabal-version:  >=1.10
 tested-with:    GHC==7.6.3, GHC==7.6.2, GHC==7.6.1, GHC==7.4.2, GHC==7.4.1, GHC==7.2.2, GHC==7.2.1, GHC==7.0.4, GHC==7.0.3, GHC==7.0.2, GHC==7.0.1, GHC==6.12.3
 
 extra-source-files:
-    changelog
+    changelog.md
 
 source-repository head
     type:     git
@@ -21,7 +21,7 @@ source-repository head
 source-repository this
     type:     git
     location: http://git.haskell.org/packages/stm.git
-    tag:      stm-2.4.2.1-release
+    tag:      stm-2.4.3-release
 
 library
     default-language: Haskell98



More information about the ghc-commits mailing list