LogicGrowsOnTrees-network 1.0.0.2 → 1.0.0.3
raw patch · 3 files changed
+35/−4 lines, 3 filesdep ~mtldep ~stm
Dependency ranges changed: mtl, stm
Files
- CHANGELOG.md +28/−0
- LogicGrowsOnTrees-network.cabal +6/−4
- tests/tests.hs +1/−0
+ CHANGELOG.md view
@@ -0,0 +1,28 @@+Version 1.0.0.3+===============++* Made some tweaks so that the tests run on older versions of GHC.+++Version 1.0.0.2+===============++* Bumped lens dependency version.+++Version 1.0.0.1+===============++* Improved performance.++* Now notices are logged when workers connect and disconnect.++* Exposed `getCurentStatistics` in the `RequestQueueMonad`, allowing one to+ obtain the statistics at any time during the run.++* Fixed the documentation.++* Now ImplicitParams are used instead of a monad to ensure sockets+ initialization.++* Bumped dependency bounds.
LogicGrowsOnTrees-network.cabal view
@@ -1,5 +1,5 @@ Name: LogicGrowsOnTrees-network-Version: 1.0.0.2+Version: 1.0.0.3 License: BSD3 License-file: LICENSE Author: Gregory Crosswhite@@ -13,6 +13,8 @@ multiple processes running in a network for parallelism; see the module documentation for more details. +Extra-source-files: CHANGELOG.md+ Bug-reports: https://github.com/gcross/LogicGrowsOnTrees-network/issues Source-Repository head@@ -22,7 +24,7 @@ Source-Repository this Type: git Location: git://github.com/gcross/LogicGrowsOnTrees-network.git- Tag: 1.0.0.2+ Tag: 1.0.0.3 Library Build-depends:@@ -36,7 +38,7 @@ hslogger-template == 2.0.*, lens >= 3.8.5 && < 4.1, MonadCatchIO-transformers == 0.3.*,- mtl >= 2.1.2 && < 2.2,+ mtl >= 2.1 && < 2.2, network >= 2.3 && < 2.5, pretty >= 1.1.1 && < 1.2, transformers == 0.3.*@@ -98,7 +100,7 @@ HUnit >= 1.2 && < 1.3, network >= 2.3 && < 2.5, random == 1.0.*,- stm >= 2.4 && < 2.5,+ stm >= 2.3 && < 2.5, test-framework== 0.8.*, test-framework-hunit == 0.3.*, transformers == 0.3.*
tests/tests.hs view
@@ -1,4 +1,5 @@ -- Language extensions {{{+{-# LANGUAGE ConstraintKinds #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE RecordWildCards #-}