Skip to content

Commit 3a31ff0

Browse files
committed
fix markdown errors (again)
1 parent b0081bb commit 3a31ff0

File tree

5 files changed

+33
-22
lines changed

5 files changed

+33
-22
lines changed

_layouts/changes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div class="span3 sidebar">
2222
<div data-spy="affix" data-offset-bottom="290">
2323
<ul class="nav nav-list sidenav">
24-
{% for page in site.pages %}
24+
{% for page in site.pages | sort %}
2525
{% if page.url contains '/changelog/' %}
2626
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
2727
{% endif %}

changelog/1-dp-0.4.1.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: changelog
3+
title: distributed-process-0.4.1
4+
date: 27-01-2013
5+
status: Released
6+
version: 0.4.1
7+
commits: distributed-process-0.4.0.2...distributed-process-0.4.1
8+
---
9+
10+
### Notes
11+
12+
This is a small feature release containing various enhancements.
13+
14+
#### Improvements
15+
16+
* [Update package boundaries](https://github.com/haskell-distributed/distributed-process/commit/a5faffd)
17+
* [depend on binary-0.6 instead of 0.5](https://github.com/haskell-distributed/distributed-process/commit/0f03091)
18+
* [Require http-conduit gt 1.8.1](https://github.com/haskell-distributed/distributed-process/commit/294e873)
19+
* [Implement receiveChanTimeout](https://github.com/haskell-distributed/distributed-process/commit/8b95ef1)
20+
* [Changed semantics of register/unregister to match Erlang](https://github.com/haskell-distributed/distributed-process/commit/37b0263)
21+
* [Fixed de-registration of remote processes when the process terminates](https://github.com/haskell-distributed/distributed-process/commit/24163c2)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ This is a small feature release containing process management enhancements and
1414
a new tracing/debugging capability.
1515

1616
#### Bugs
17+
1718
* [DP-60](https://cloud-haskell.atlassian.net/browse/DP-60) - Fixes made for the distributed-process with strict bytestrings
1819

1920
#### Improvements
21+
2022
* [DP-61](https://cloud-haskell.atlassian.net/browse/DP-61) - Switched from Binary to cereal, allowed switching between lazy and strict ByteString
2123
* [DP-31](https://cloud-haskell.atlassian.net/browse/DP-31) - Messages from the &quot;main channel&quot; as a receivePort
2224
* [DP-35](https://cloud-haskell.atlassian.net/browse/DP-35) - Add variants of exit and kill for the current process
Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: changelog
33
title: distributed-process-0.5.0
44
status: Released
5-
date: Wen May 28 12:15:02 UTC 2014
5+
date: 28-05-2014
66
version: 0.5.0
77
commits: distributed-process-0.4.2...master
88
release: 10008
@@ -22,21 +22,22 @@ underlying types.
2222

2323
The performance of inter-process messaging has been optimised for intra-node use cases. Messages are no
2424
longer sent over the network-transport infrastructure when the receiving process resides on the same node
25-
as the sender. New `unsafe` APIs have been made available to allow code that uses intra-node messaging to
25+
as the sender. New unsafe APIs have been made available to allow code that uses intra-node messaging to
2626
skip the serialization of messages, facilitating further performance benefits at the risk of altered
27-
error handling semantics. More details are available in the [`UnsafePrimitives` documentation][1].
27+
error handling semantics. More details are available in the [UnsafePrimitives documentation][1].
2828

29-
A new [*Management API*][2] has been added, giving user code the ability to receive and respond to a running
29+
A new [Management API][2] has been added, giving user code the ability to receive and respond to a running
3030
node's internal system events. The tracing and debugging support added in 0.4.2 has been [upgraded][3] to use
3131
this API, which is more efficient and flexible.
3232

3333
#### Bugs
3434

35-
* [DP-68](https://cloud-haskell.atlassian.net/browse/DP-68) - Dependency on STM implicitly changed from 1.3 to 1.4, but was not reflected in the .cabal file
36-
* [DP-79](https://cloud-haskell.atlassian.net/browse/DP-79) - Race condition in local monitoring when using `call`
35+
* [DP-68](https://cloud-haskell.atlassian.net/browse/DP-68) - Dependency on STM implicitly changed from 1.3 to 1.4, but was not reflected in the cabal file
36+
* [DP-79](https://cloud-haskell.atlassian.net/browse/DP-79) - Race condition in local monitoring when using call
3737
* [DP-94](https://cloud-haskell.atlassian.net/browse/DP-94) - mask does not work correctly if unmask is called by another process
3838

3939
#### Improvements
40+
4041
* [DP-20](https://cloud-haskell.atlassian.net/browse/DP-20) - Improve efficiency of local message passing
4142
* [DP-77](https://cloud-haskell.atlassian.net/browse/DP-77) - nsend should use local communication channels
4243
* [DP-39](https://cloud-haskell.atlassian.net/browse/DP-39) - Link Node Controller and Network Listener
@@ -48,12 +49,12 @@ this API, which is more efficient and flexible.
4849
* [DP-92](https://cloud-haskell.atlassian.net/browse/DP-92) - Expose node statistics
4950

5051
#### New Features
51-
* [DP-7](https://cloud-haskell.atlassian.net/browse/DP-7) - Polymorphic expect (see details [here](https://hackage.haskell.org/package/distributed-process-0.5.0/docs/Control-Distributed-Process.html#g:5)
52+
53+
* [DP-7](https://cloud-haskell.atlassian.net/browse/DP-7) - Polymorphic expect, see details [here](https://hackage.haskell.org/package/distributed-process-0.5.0/docs/Control-Distributed-Process.html#g:5)
5254
* [DP-57](https://cloud-haskell.atlassian.net/browse/DP-57) - Expose Message and broaden the scope of polymorphic expect
5355
* [DP-84](https://cloud-haskell.atlassian.net/browse/DP-84) - Provide an API for working with internal (system) events
5456
* [DP-83](https://cloud-haskell.atlassian.net/browse/DP-83) - Report node statistics for monitoring/management
5557

56-
5758
[1]: https://hackage.haskell.org/package/distributed-process-0.5.0/docs/Control-Distributed-Process-UnsafePrimitives.html
5859
[2]: https://hackage.haskell.org/package/distributed-process-0.5.0/docs/Control-Distributed-Process-Management.html
5960
[3]: https://hackage.haskell.org/package/distributed-process-0.5.0/docs/Control-Distributed-Process-Debug.html

changelog/dp-0.4.1.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)