Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Jan 8, 2020
1 parent dbe37fb commit aa06403
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ high state of flux, you're at risk of it changing without notice.
- deprecate `getSemigroup` in favor of `getMonoid` (@gcanti)
- `Ordering`
- deprecate `semigroupOrdering` in favor of `monoidOrdering` (@gcanti)
- **Internal**
- use native `Promise.race` in `Task.getRaceMonoid` (@gcanti)

# 2.3.1

Expand Down
2 changes: 2 additions & 0 deletions docs/modules/Task.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ Added in v2.0.0

# getRaceMonoid (function)

Note: uses `Promise.race` internally

**Signature**

```ts
Expand Down
2 changes: 2 additions & 0 deletions src/Task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ export function getMonoid<A>(M: Monoid<A>): Monoid<Task<A>> {
}

/**
* Note: uses `Promise.race` internally
*
* @since 2.0.0
*/
export function getRaceMonoid<A = never>(): Monoid<Task<A>> {
Expand Down

0 comments on commit aa06403

Please sign in to comment.