Skip to content

Commit

Permalink
version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Jul 14, 2019
1 parent 5e4a445 commit a7983b3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
**Note**: Gaps between patch versions are faulty/broken releases. **Note**: A feature tagged as Experimental is in a
high state of flux, you're at risk of it changing without notice.

# 2.0.2

- **Bug Fix**
- add `reduce` to `FoldableComposition2C1` (@anilanar)

# 2.0.1

- **Bug Fix**
Expand Down
1 change: 1 addition & 0 deletions docs/modules/Foldable.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ Added in v2.0.0

```ts
export interface FoldableComposition2C1<F extends URIS2, G extends URIS, E> {
readonly reduce: <A, B>(fga: Kind2<F, E, Kind<G, A>>, b: B, f: (b: B, a: A) => B) => B
readonly foldMap: <M>(M: Monoid<M>) => <A>(fa: Kind2<F, E, Kind<G, A>>, f: (a: A) => M) => M
readonly reduceRight: <A, B>(fa: Kind2<F, E, Kind<G, A>>, b: B, f: (a: A, b: B) => B) => B
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fp-ts",
"version": "2.0.1",
"version": "2.0.2",
"description": "Functional programming in TypeScript",
"files": [
"lib",
Expand Down

0 comments on commit a7983b3

Please sign in to comment.