Skip to content

Commit 097476e

Browse files
authored
Merge pull request #64 from input-output-hk/coot/haddocks
typed-protocols-stateful: haddocks
2 parents d127d3e + c594b9c commit 097476e

File tree

15 files changed

+79
-29
lines changed

15 files changed

+79
-29
lines changed

.github/workflows/haskell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
ghc: ["8.10", "9.2", "9.4", "9.6", "9.10"]
14+
ghc: ["8.10", "9.2", "9.4", "9.6", "9.8", "9.10"]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616

1717
env:

typed-protocols-cborg/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Revision history for typed-protocols-cborg
22

3+
## 0.3.0.0
4+
5+
* bumped version to agree with `typed-protocols-stateful-0.3.0.0`
6+
7+
## 0.2.0.0
8+
9+
* updated to use `typed-protocols-0.2.0.0`
10+
311
## 0.1.0.0 -- 2021-07-28
412

513
* Initial experiments and prototyping

typed-protocols-cborg/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ typed-protocols-cborg
22
=====================
33

44
[CBOR](https://hackage.haskell.org/package/cborg) codecs for
5-
[typed-protocols](https://input-output-hk.github.io/ouroboros-network/typed-protocols/Network-TypedProtocol.html)
5+
[typed-protocols](https://input-output-hk.github.io/typed-protocols)
66
package.

typed-protocols-cborg/typed-protocols-cborg.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ author: Alexander Vieth, Duncan Coutts, Marcin Szamotulski
1212
maintainer: alex@well-typed.com, duncan@well-typed.com, marcin.szamotulski@iohk.io
1313
category: Control
1414
build-type: Simple
15-
tested-with: GHC == {8.10, 9.2, 9.4, 9.6}
16-
extra-source-files: CHANGELOG.md, README.md
15+
tested-with: GHC == {8.10, 9.2, 9.4, 9.6, 9.8, 9.10}
16+
extra-doc-files: CHANGELOG.md, README.md
1717

1818
library
1919
exposed-modules: Network.TypedProtocol.Codec.CBOR

typed-protocols-doc/typed-protocols-doc.cabal

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ category: Network
1212
build-type: Simple
1313
extra-doc-files: CHANGELOG.md
1414
NOTICE
15-
-- extra-source-files:
1615

1716
common warnings
1817
ghc-options: -Wall

typed-protocols-examples/typed-protocols-examples.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ license: Apache-2.0
77
license-files:
88
LICENSE
99
NOTICE
10-
copyright: 2019-2023 Input Output Global Inc (IOG)
10+
copyright: 2019-2024 Input Output Global Inc (IOG)
1111
author: Alexander Vieth, Duncan Coutts, Marcin Szamotulski
1212
maintainer: alex@well-typed.com, duncan@well-typed.com, marcin.szamotulski@iohk.io
1313
category: Control
1414
build-type: Simple
15-
tested-with: GHC == {8.10, 9.2, 9.4, 9.6}
15+
tested-with: GHC == {8.10, 9.2, 9.4, 9.6, 9.8, 9.10}
1616

1717
-- These should probably be added at some point.
18-
-- extra-source-files: ChangeLog.md, README.md
18+
-- extra-doc-files: ChangeLog.md, README.md
1919

2020
library
2121
exposed-modules: Network.TypedProtocol.Channel
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Revision history of typed-protocols-stateful
2+
3+
## 0.3.0.0
4+
5+
* bumped version to agree with `typed-protocols-stateful-0.3.0.0`, in particular:
6+
when encoding the local state associated to the initial message state is
7+
passed to the codec.
8+
9+
## 0.2.0.0
10+
11+
* Initial version
12+

typed-protocols-stateful-cborg/ChangeLog.md

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

typed-protocols-stateful-cborg/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ typed-protocols-stateful-cborg
22
==============================
33

44
[CBOR](https://hackage.haskell.org/package/cborg) codecs for
5-
[typed-protocols-stateful](https://input-output-hk.github.io/ouroboros-network/typed-protocols/Network-TypedProtocol-Stateful-Peer.html)
5+
[typed-protocols-stateful](https://input-output-hk.github.io/typed-protocols/typed-protocols-stateful)
66
package.

typed-protocols-stateful-cborg/typed-protocols-stateful-cborg.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ copyright: 2022-2024 Input Output Global Inc (IOG)
1111
author: Marcin Szamotulski
1212
maintainer: marcin.szamotulski@iohk.io
1313
category: Control
14+
tested-with: GHC == {8.10, 9.2, 9.4, 9.6, 9.8, 9.10}
1415
build-type: Simple
1516

1617
-- These should probably be added at some point.
17-
extra-source-files: ChangeLog.md, README.md
18+
extra-doc-files: CHANGELOG.md, README.md
1819

1920
library
2021
exposed-modules: Network.TypedProtocol.Stateful.Codec.CBOR

0 commit comments

Comments
 (0)