Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 8de3ac7

Browse files
authored
Merge haskell-distributed/prerelease-0.3.0
Pre-release 0.3.0
2 parents c2d9cbc + 27c78ec commit 8de3ac7

File tree

4 files changed

+25
-21
lines changed

4 files changed

+25
-21
lines changed

ChangeLog

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2017-02-05 Tim Watson <watson.timothy @ google mail service dot com> 0.3.0
2+
3+
* Update dependency bounds - drop support for distributed-process < 0.6.6
4+
* Drop support for GHC < 7.10
5+
* Fixes for testing with latest stack and CI changes
6+
17
2016-02-16 Facundo Domínguez <[email protected]> 0.2.1.2
28

39
* Update dependency bounds.
@@ -8,12 +14,3 @@
814
* Add compatibility with ghc-7.10.
915
* Fix dependency bounds.
1016
* Add missing NFData instances.
11-
12-
# HEAD
13-
14-
* Added initial GenServer module
15-
* Added Timer Module
16-
* Moved time functions into Time.hs
17-
* Added Async API
18-
* Added GenProcess API (subsumes lower level GenServer API)
19-

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# distribributed-process-extras
2-
[![travis](https://secure.travis-ci.org/haskell-distributed/distributed-process-extras.png)](http://travis-ci.org/haskell-distributed/distributed-process-extras)
2+
[![Build Status](https://secure.travis-ci.org/haskell-distributed/distributed-process-extras.png)](http://travis-ci.org/haskell-distributed/distributed-process-extras)
33
[![Coverage Status](https://coveralls.io/repos/github/haskell-distributed/distributed-process-extras/badge.svg?branch=master)](https://coveralls.io/github/haskell-distributed/distributed-process-extras?branch=master)
4-
[![Release](https://img.shields.io/hackage/v/distributed-process-extras.svg)](https://hackage.haskell.org/package/distributed-process-extras)
4+
[![Hackage](https://img.shields.io/hackage/v/distributed-process-extras.svg)](https://hackage.haskell.org/package/distributed-process-extras)
5+
[![Hackage-Deps](https://img.shields.io/hackage-deps/v/distributed-process-extras.svg)](http://packdeps.haskellers.com/feed?needle=distributed-process-extras)
6+
[![Stackage LTS 6](https://www.stackage.org/package/distributed-process-extras/badge/lts-6)](http://stackage.org/lts-6/package/distributed-process-extras)
7+
[![BSD3 License](http://img.shields.io/badge/license-BSD3-brightgreen.svg)](https://tldrlegal.com/license/bsd-3-clause-license-%28revised%29)
8+
[![Stories in Progress](https://badge.waffle.io/haskell-distributed/distributed-process-extras.svg?label=in%20progress&title=In%20Progress)](https://waffle.io/hhaskell-distributed/distributed-process-extras)
59

610
See http://haskell-distributed.github.com for documentation, user guides,
711
tutorials and assistance.

distributed-process-extras.cabal

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: distributed-process-extras
2-
version: 0.2.1.2
2+
version: 0.3.0
33
cabal-version: >=1.8
44
build-type: Simple
55
license: BSD3
66
license-file: LICENCE
77
stability: experimental
8-
Copyright: Tim Watson 2012 - 2016
8+
Copyright: Tim Watson 2012 - 2017
99
Author: Tim Watson
1010
Maintainer: Tim Watson <[email protected]>
1111
Stability: experimental
1212
Homepage: http://github.com/haskell-distributed/distributed-process-extras
1313
Bug-Reports: http://github.com/haskell-distributed/distributed-process-extras/issues
1414
synopsis: Cloud Haskell Extras
1515
description: Supporting library, providing common types and utilities used by the
16-
various components that make up the distributed-process-platform package.
16+
various libraries built on top of distributed-process
1717
category: Control
18-
tested-with: GHC == 7.8.4 GHC == 7.10.2 GHC == 7.10.3
18+
Tested-With: GHC==7.10.3 GHC==8.0.1 GHC==8.0.2
1919
data-dir: ""
2020
extra-source-files: ChangeLog
2121

@@ -32,7 +32,7 @@ flag old-locale
3232
library
3333
build-depends: base >= 4.6 && < 5,
3434
data-accessor >= 0.2.2.3,
35-
distributed-process >= 0.6.1 && < 0.7,
35+
distributed-process >= 0.6.6 && < 0.7,
3636
binary >= 0.6.3.0 && < 0.9,
3737
deepseq >= 1.3.0.1 && < 1.6,
3838
mtl >= 2.0 && < 2.4,
@@ -73,7 +73,7 @@ test-suite InternalQueueTests
7373
build-depends:
7474
base >= 4.6 && < 5,
7575
ansi-terminal >= 0.5 && < 0.7,
76-
distributed-process >= 0.6.1 && < 0.7,
76+
distributed-process >= 0.6.6 && < 0.7,
7777
distributed-process-extras,
7878
distributed-process-systest >= 0.1.0 && < 0.2.0,
7979
HUnit >= 1.2 && < 2,
@@ -96,7 +96,7 @@ test-suite PrimitivesTests
9696
build-depends:
9797
base >= 4.6 && < 5,
9898
ansi-terminal >= 0.5 && < 0.7,
99-
distributed-process >= 0.6.1 && < 0.7,
99+
distributed-process >= 0.6.6 && < 0.7,
100100
distributed-process-extras,
101101
distributed-process-systest >= 0.1.0 && < 0.2.0,
102102
network-transport >= 0.4 && < 0.5,
@@ -125,7 +125,7 @@ test-suite TimerTests
125125
base >= 4.6 && < 5,
126126
ansi-terminal >= 0.5 && < 0.7,
127127
deepseq >= 1.3.0.1 && < 1.6,
128-
distributed-process >= 0.6.1 && < 0.7,
128+
distributed-process >= 0.6.6 && < 0.7,
129129
distributed-process-extras,
130130
distributed-process-systest >= 0.1.0 && < 0.2.0,
131131
network-transport >= 0.4 && < 0.5,
@@ -153,7 +153,7 @@ test-suite LoggerTests
153153
containers,
154154
hashable,
155155
unordered-containers >= 0.2.3.0 && < 0.3,
156-
distributed-process >= 0.6.1 && < 0.7,
156+
distributed-process >= 0.6.6 && < 0.7,
157157
distributed-process-extras,
158158
distributed-process-systest >= 0.1.0 && < 0.2.0,
159159
distributed-static,
@@ -176,6 +176,6 @@ test-suite LoggerTests
176176
ghc-prim
177177
hs-source-dirs:
178178
tests
179-
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind -eventlog
179+
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
180180
extensions: CPP
181181
main-is: TestLog.hs

stack-ghc-7.10.3.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ packages:
66
git: https://github.com/haskell-distributed/distributed-process-systest.git
77
commit: 6b8749fd38141425e6b677d5a5137b3fe09cc127
88
extra-dep: true
9+
10+
extra-deps:
11+
- distributed-process-0.6.6 # missing snapshot

0 commit comments

Comments
 (0)