packages feed

quantum-random 0.6.0 → 0.6.1

raw patch · 4 files changed

+9/−5 lines, 4 filesdep ~http-conduit

Dependency ranges changed: http-conduit

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for `quantum-random` +#### 0.6.1++* Update dependency for `http-conduit-2.2`.+ ## 0.6.0  * First public version. Released on an unsuspecting world.
README.md view
@@ -1,4 +1,4 @@-# quantum-random-numbers+# quantum-random  [![Build Status](https://travis-ci.org/BlackBrane/quantum-random.svg?branch=master)](https://travis-ci.org/BlackBrane/quantum-random) [![Hackage](https://img.shields.io/hackage/v/quantum-random.svg)](http://hackage.haskell.org/package/quantum-random)
quantum-random.cabal view
@@ -1,5 +1,5 @@ name:                quantum-random-version:             0.6.0+version:             0.6.1 synopsis:            Retrieve, store and manage real quantum random data.  description:         Retrieve, store and manage real quantum random data, originating from vacuum@@ -48,7 +48,7 @@                        text          >=1.2  && <1.3,                        regex-posix   >=0.9  && <1.0,                        bytestring    >=0.10 && <0.11,-                       http-conduit  >=2.1  && <2.2,+                       http-conduit  >=2.1  && <2.3,                        ansi-terminal >=0.6  && <0.7,                        terminal-size >=0.3  && <0.4,                        directory     >=1.2  && <1.3
src-ex/Main.hs view
@@ -54,7 +54,7 @@   , "set targetSize    –  Set the number of bytes to have after refilling"   , "set style [style] –  Set the default display style"   , "help/?            –  Display this text"-  , "quit              –  Quit"+  , "quit/q            –  Quit"   , ""   , "======= Display options ======="   , ""@@ -149,7 +149,7 @@  description :: Command -> String description (Add n)         = "Adding " ++ bitsNBytes n ++ " of quantum random data to store"-description (Live n _)      = "Viewing up to " ++ bitsNBytes n ++ " of live quantum random data from ANU"+description (Live n _)      = "Retrieving " ++ bitsNBytes n ++ " of live quantum random data from ANU" description (Observe n _)   = "Observing " ++ bitsNBytes n ++ " of quantum random data from store" description (Peek n _)      = "Viewing up to " ++ bitsNBytes n ++ " of quantum random data from store" description (PeekAll _)     = "Viewing all quantum random data from store"