packages feed

dlist 0.8.0.1 → 0.8.0.2

raw patch · 4 files changed

+21/−4 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -2,13 +2,21 @@ Change Log ========== +Version 0.8.0.2 (2016-09-04) *World Sexual Health Day*+------------------------------------------------------++#### Package changes++* Fix test suite: add missing module `OverloadedStrings`+  ([Sergei Trofimovich](https://github.com/trofi))+ Version 0.8.0.1 (2016-07-29) *58th Anniversary of the Creation of NASA* -----------------------------------------------------------------------  #### Package changes  * Change QuickCheck lower bound to 2.9 for GHC >= 8 (base >= 4.9)-  ([Adam Bergmark](https://github.com/bergmark)])+  ([Adam Bergmark](https://github.com/bergmark))  Version 0.8 (2016-07-17) *Constitution Day in South Korea* ----------------------------------------------------------
README.md view
@@ -1,7 +1,7 @@ # Difference Lists in Haskell -[![Build Status](https://travis-ci.org/spl/dlist.png?branch=master)](https://travis-ci.org/spl/dlist)-[![Hackage](https://budueba.com/hackage/dlist)](https://hackage.haskell.org/package/dlist)+[![Travis CI](https://img.shields.io/travis/spl/dlist.svg?maxAge=2592000)](https://travis-ci.org/spl/dlist)+[![Hackage](https://img.shields.io/hackage/v/dlist.svg?maxAge=2592000)](https://hackage.haskell.org/package/dlist)  ## Summary 
dlist.cabal view
@@ -1,5 +1,5 @@ name:                   dlist-version:                0.8.0.1+version:                0.8.0.2 synopsis:               Difference lists description:   Difference lists are a list-like type supporting O(1) append. This is@@ -40,6 +40,7 @@ test-suite test   type:                 exitcode-stdio-1.0   main-is:              Main.hs+  other-modules:        OverloadedStrings   hs-source-dirs:       tests   build-depends:        dlist,                         base,
+ tests/OverloadedStrings.hs view
@@ -0,0 +1,8 @@+{-# LANGUAGE OverloadedStrings #-}++module OverloadedStrings (testOverloadedStrings) where++import Data.DList++testOverloadedStrings :: IO ()+testOverloadedStrings = print $ "OverloadedStrings:" `append` " success"