Skip to content

Commit 9814d9c

Browse files
committed
Preparation for minor release for all packages
1 parent dd247e3 commit 9814d9c

30 files changed

Lines changed: 119 additions & 31 deletions

File tree

packages/distributed-process-async/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-09-03 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.2.8
2+
3+
* Bumped dependency bounds to support GHC 8.10.7 - GHC 9.10.1
4+
* Updated links to point to Distributed Haskell monorepo
5+
16
2024-03-25 David Simmons-Duffin <dsd@caltech.edu> 0.2.7
27

38
* Bump dependencies to build with ghc-9.8.

packages/distributed-process-async/distributed-process-async.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: distributed-process-async
3-
version: 0.2.7
3+
version: 0.2.8
44
build-type: Simple
55
license: BSD-3-Clause
66
license-file: LICENCE
@@ -16,6 +16,7 @@ description: This package provides a higher-level interface over Processes, i
1616
The package provides ways to create Async computations, wait for their results, and cancel them.
1717
category: Control
1818
tested-with: GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1
19+
extra-doc-files: CHANGELOG.md
1920

2021
source-repository head
2122
Type: git

packages/distributed-process-client-server/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
2024-09-03 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.2.6.0
4+
5+
* Bumped dependency bounds to support GHC 8.10.7 - GHC 9.10.1
6+
* Updated links to point to Distributed Haskell monorepo
7+
38
## [v0.2.5.1](https://github.com/haskell-distributed/distributed-process-client-server/tree/v0.2.5.1) (2018-06-14)
49
[Full Changelog](https://github.com/haskell-distributed/distributed-process-client-server/compare/v0.2.3...v0.2.5.1)
510

packages/distributed-process-client-server/distributed-process-client-server.cabal

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: distributed-process-client-server
3-
version: 0.2.5.1
3+
version: 0.2.6.0
44
build-type: Simple
55
license: BSD-3-Clause
66
license-file: LICENCE
@@ -16,7 +16,8 @@ description: Modelled after Erlang OTP's gen_server, this framework provides
1616
development into a set of modules and standards designed to help you build
1717
concurrent, distributed applications with relative ease.
1818
category: Control
19-
tested-with: GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1
19+
tested-with: GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1
20+
extra-doc-files: CHANGELOG.md
2021

2122
source-repository head
2223
Type: git
@@ -64,6 +65,7 @@ library
6465
Control.Distributed.Process.ManagedProcess.Internal.Types,
6566
Control.Distributed.Process.ManagedProcess.Internal.GenProcess
6667
other-modules: Control.Distributed.Process.ManagedProcess.Internal.PriorityQueue
68+
default-language: Haskell2010
6769

6870
test-suite ManagedProcessTests
6971
import: warnings
@@ -102,6 +104,7 @@ test-suite ManagedProcessTests
102104
tests
103105
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
104106
main-is: TestManagedProcess.hs
107+
default-language: Haskell2010
105108

106109
test-suite PrioritisedProcessTests
107110
import: warnings
@@ -137,3 +140,4 @@ test-suite PrioritisedProcessTests
137140
tests
138141
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
139142
main-is: TestPrioritisedProcess.hs
143+
default-language: Haskell2010

packages/distributed-process-execution/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-09-03 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.1.3.0
2+
3+
* Bumped dependency bounds to support GHC 8.10.7 - GHC 9.10.1
4+
* Updated links to point to Distributed Haskell monorepo
5+
16
2015-06-15 Facundo Domínguez <facundo.dominguez@tweag.io> 0.1.2
27

38
* Add compatibility with ghc-7.10.

packages/distributed-process-execution/distributed-process-execution.cabal

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: distributed-process-execution
3-
version: 0.1.2.2
3+
version: 0.1.3.0
44
build-type: Simple
55
license: BSD-3-Clause
66
license-file: LICENCE
@@ -16,8 +16,8 @@ description:
1616
The currently implementation provides only a subset of the plumbing required, comprising tools
1717
for event management, mailbox buffering and message routing.
1818
category: Control
19-
tested-with: GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1
20-
extra-source-files: ChangeLog
19+
tested-with: GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1
20+
extra-doc-files: ChangeLog
2121

2222
source-repository head
2323
Type: git
@@ -63,6 +63,7 @@ library
6363
Control.Distributed.Process.Execution.Exchange.Broadcast,
6464
Control.Distributed.Process.Execution.Exchange.Internal,
6565
Control.Distributed.Process.Execution.Exchange.Router
66+
default-language: Haskell2010
6667

6768

6869
test-suite ExchangeTests
@@ -103,6 +104,7 @@ test-suite ExchangeTests
103104
tests
104105
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind -eventlog
105106
main-is: TestExchange.hs
107+
default-language: Haskell2010
106108

107109

108110
test-suite MailboxTests
@@ -144,3 +146,4 @@ test-suite MailboxTests
144146
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind -eventlog
145147
main-is: TestMailbox.hs
146148
other-modules: MailboxTestFilters
149+
default-language: Haskell2010

packages/distributed-process-extras/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-09-03 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.3.6
2+
3+
* Bumped dependency bounds to support GHC 8.10.7 - GHC 9.10.1
4+
* Updated links to point to Distributed Haskell monorepo
5+
16
2017-06-13 Alexander Vershilov <alexander.vershilov@gmail.com> 0.3.5
27
* Bump dependencies
38
* Cleanup code

packages/distributed-process-extras/distributed-process-extras.cabal

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: distributed-process-extras
3-
version: 0.3.5
3+
version: 0.3.6
44
build-type: Simple
55
license: BSD-3-Clause
66
license-file: LICENCE
@@ -15,7 +15,7 @@ description: Supporting library, providing common types and utilities used by
1515
various libraries built on top of distributed-process
1616
category: Control
1717
tested-with: GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1
18-
extra-source-files: ChangeLog
18+
extra-doc-files: ChangeLog
1919

2020
source-repository head
2121
Type: git
@@ -64,6 +64,7 @@ library
6464
Control.Distributed.Process.Extras.Internal.Queue.SeqQ
6565
Control.Distributed.Process.Extras.Internal.Queue.PriorityQ
6666
Control.Distributed.Process.Extras.Internal.Unsafe
67+
default-language: Haskell2010
6768

6869
test-suite InternalQueueTests
6970
import: warnings
@@ -86,6 +87,7 @@ test-suite InternalQueueTests
8687
ghc-options: -rtsopts
8788
main-is: TestQueues.hs
8889
cpp-options: -DTESTING
90+
default-language: Haskell2010
8991

9092
test-suite PrimitivesTests
9193
import: warnings
@@ -113,6 +115,7 @@ test-suite PrimitivesTests
113115
hs-source-dirs: tests
114116
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
115117
main-is: TestPrimitives.hs
118+
default-language: Haskell2010
116119

117120
test-suite TimerTests
118121
import: warnings
@@ -138,6 +141,7 @@ test-suite TimerTests
138141
ghc-options: -rtsopts
139142
main-is: TestTimer.hs
140143
cpp-options: -DTESTING
144+
default-language: Haskell2010
141145

142146
test-suite LoggerTests
143147
import: warnings
@@ -173,3 +177,4 @@ test-suite LoggerTests
173177
hs-source-dirs: tests
174178
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
175179
main-is: TestLog.hs
180+
default-language: Haskell2010

packages/distributed-process-simplelocalnet/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-09-03 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.3.2
2+
3+
* Bumped dependency bounds to support GHC 8.10.7 - GHC 9.10.1
4+
* Updated links to point to Distributed Haskell monorepo
5+
16
2024-08-28 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.3.1
27

38
* Now tested with GHC 9.10.1.

packages/distributed-process-simplelocalnet/distributed-process-simplelocalnet.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
Name: distributed-process-simplelocalnet
3-
Version: 0.3.1
3+
Version: 0.3.2
44
Build-Type: Simple
55
License: BSD-3-Clause
66
License-File: LICENSE
@@ -17,7 +17,7 @@ Description: Simple backend based on the TCP transport which offers node
1717
without imposing any structure on your application.
1818
tested-with: GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1
1919
Category: Control
20-
extra-source-files: ChangeLog
20+
extra-doc-files: ChangeLog
2121

2222
source-repository head
2323
Type: git

0 commit comments

Comments
 (0)