Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for `cuddle`

## 1.8.1.0

*

## 1.8.0.0

* Change `validateCBOR` return type to `Either ValidateCBORError (Evidenced ValidationTrace)`
Expand Down
2 changes: 1 addition & 1 deletion cuddle.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.4
name: cuddle
version: 1.8.0.0
version: 1.8.1.0
synopsis: CDDL Generator and test utilities
description:
Cuddle is a library for generating and manipulating [CDDL](https://datatracker.ietf.org/doc/html/rfc8610).
Expand Down
12 changes: 11 additions & 1 deletion src/Codec/CBOR/Cuddle/CDDL/CTree.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE UndecidableInstances #-}

module Codec.CBOR.Cuddle.CDDL.CTree where
module Codec.CBOR.Cuddle.CDDL.CTree (
XXCTree,
CTree (..),
traverseCTree,
foldCTree,
Node,
CTreeRoot (..),
PTerm (..),
uintMax,
nintMin,
) where

import Codec.CBOR.Cuddle.CDDL (Name, OccurrenceIndicator, RangeBound, Value)
import Codec.CBOR.Cuddle.CDDL.CtlOp
Expand Down
Loading