packages feed

apache-md5 0.6.1.1 → 0.6.1.2

raw patch · 3 files changed

+23/−5 lines, 3 filesdep ~MonadRandomdep ~deepseqPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: MonadRandom, deepseq

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,6 +1,16 @@ # ChangeLog / ReleaseNotes  +## Version 0.6.1.2++* Bumping up dependency on [MonadRandom][] to include `0.4`. (change, affects+  only benchmark and test-suite)+* Adding sensible upper bound to [deepseq][] package. (change, affects+  only benchmark)+* Uploaded to [Hackage][]:+  <http://hackage.haskell.org/package/apache-md5-0.6.1.2>++ ## Version 0.6.1.1  * Cleanup of version dependencies, most importantly:@@ -63,3 +73,9 @@ [Hackage]:   http://hackage.haskell.org/   "HackageDB (or just Hackage) is a collection of releases of Haskell packages."+[MonadRandom]:+  http://hackage.haskell.org/package/MonadRandom+  "Hackage: MonadRandom package."+[deepseq]:+  http://hackage.haskell.org/package/deepseq+  "Hackage: deepseq package."
README.md view
@@ -1,9 +1,11 @@ # Apache MD5  [![Hackage](http://img.shields.io/hackage/v/apache-md5.svg)][Hackage: apache-md5]+[![Hackage Dependencies](https://img.shields.io/hackage-deps/v/apache-md5.svg)](http://packdeps.haskellers.com/reverse/apache-md5) [![Haskell Programming Language](https://img.shields.io/badge/language-Haskell-blue.svg)][Haskell.org] [![BSD3 License](http://img.shields.io/badge/license-BSD3-brightgreen.svg)][tl;dr Legal: BSD3] +[![Build](https://travis-ci.org/trskop/apache-md5.svg)](https://travis-ci.org/trskop/apache-md5)   ## Description
apache-md5.cabal view
@@ -1,5 +1,5 @@ name:                 apache-md5-version:              0.6.1.1+version:              0.6.1.2 synopsis:             Apache specific MD5 digest algorighm. description:   Haskell implementation of Apache HTTP server specific MD5 digest algorithm@@ -80,7 +80,7 @@     , transformers >= 0.3 && < 0.5     -- }}} Distributed with GHC or Haskell Platform --------------------------- -    , MonadRandom >= 0.2.0.1 && < 0.4+    , MonadRandom >= 0.2.0.1 && < 0.5     , HUnit >= 1.2 && < 2       -- ^ Same constraints as test-framework-hunit     , test-framework >= 0.8 && < 1@@ -112,12 +112,12 @@     -- {{{ Dependencies of apache-md5 library ---------------------------------       base >= 4 && < 5     , bytestring >= 0.10 && < 0.11-    , deepseq >= 1.1.0.0+    , deepseq >= 1.1.0.0 && < 2     -- ^ Same minimal bound as criterion has since version 0.4.0.     -- }}} Dependencies of apache-md5 library ---------------------------------      , criterion >= 1.0.0.0 && < 2-    , MonadRandom >= 0.2.0.1 && < 0.4+    , MonadRandom >= 0.2.0.1 && < 0.5    includes:             openssl/md5.h   extra-libraries:      crypto@@ -137,4 +137,4 @@ source-repository this   type:                 git   location:             git://github.com/trskop/apache-md5.git-  tag:                  v0.6.1.1+  tag:                  v0.6.1.2