packages feed

context 0.2.0.2 → 0.2.0.3

raw patch · 3 files changed

+8/−4 lines, 3 filesdep ~containersPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: containers

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Change log +## 0.2.0.3++* Relax upper bound on `containers`: 0.7 -> 0.8+ ## 0.2.0.2  * Link test suite with `-threaded` RTS option
context.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           context-version:        0.2.0.2+version:        0.2.0.3 synopsis:       Thread-indexed, nested contexts description:    Thread-indexed storage around arbitrary context values. The interface supports                 nesting context values per thread, and at any point, the calling thread may@@ -44,7 +44,7 @@   ghc-options: -Wall -fwarn-tabs -Wincomplete-uni-patterns -Wredundant-constraints   build-depends:       base >=4.11.1.0 && <5-    , containers >=0.5.11.0 && <0.7+    , containers >=0.5.11.0 && <0.8     , exceptions >=0.10.0 && <0.11   default-language: Haskell2010 
package.yaml view
@@ -1,5 +1,5 @@ name: context-version: '0.2.0.2'+version: '0.2.0.3' github: "jship/context" license: MIT license-file: LICENSE.md@@ -28,7 +28,7 @@ library:   dependencies:   - base >=4.11.1.0 && <5-  - containers >=0.5.11.0 && <0.7+  - containers >=0.5.11.0 && <0.8   - exceptions >=0.10.0 && <0.11   source-dirs: library