Skip to content

Commit

Permalink
Write CHANGELOG for 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KtorZ committed Aug 2, 2021
1 parent 3b44c8d commit a48e967
Showing 1 changed file with 55 additions and 1 deletion.
56 changes: 55 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,61 @@
# Changelog

# v1.0.0 (2019-05-07)
## v1.1.0 (2021-08-03)


### Added

#### Cbor

- New module `Cbor` exposing a generic `CborItem` sum-type.

#### Cbor.Decode

- New primitives added (see #1):

```elm
keyValueMap : Decoder k -> Decoder v -> Decoder (List ( k, v ))

array : Decoder a -> Decoder a
record : Decoder a -> Decoder a

any : Decoder CborItem
raw : Decoder Bytes
```

#### Cbor.Encode

- New primitives added:

```elm
keyValueMap : (k -> Encoder) -> (v -> Encoder) -> List ( k, v ) -> Encoder

undefined : Encoder

any : CborItem -> Encoder
raw : Bytes -> Encoder
```

### Changed

N/A

### Removed

N/A

## v1.0.0 (2019-05-07)

### Added

- Initial RFC-7049 implementation
- Provide unit & fuzz tests
- Initial README with example usage

### Changed

N/A

### Removed

N/A

0 comments on commit a48e967

Please sign in to comment.