Skip to content

Commit

Permalink
version 2.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Sep 22, 2020
1 parent 2e7d6c5 commit 6a3c7cb
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
**Note**: A feature tagged as Experimental is in a
high state of flux, you're at risk of it changing without notice.

# 2.8.3

- **Polish**
- `Reader`
- export `Strong` instance (@urgent)
- export `Choice` instance (@gcanti)

# 2.8.2

- **Polish**
Expand Down
22 changes: 22 additions & 0 deletions docs/modules/Reader.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,11 @@ Added in v2.0.0
- [instances](#instances)
- [Applicative](#applicative-1)
- [Category](#category-1)
- [Choice](#choice)
- [Functor](#functor-1)
- [Monad](#monad-1)
- [Profunctor](#profunctor-1)
- [Strong](#strong)
- [URI](#uri)
- [URI (type alias)](#uri-type-alias)
- [getMonoid](#getmonoid)
Expand Down Expand Up @@ -284,6 +286,16 @@ export declare const Category: Category2<'Reader'>
Added in v2.7.0
## Choice
**Signature**
```ts
export declare const Choice: Choice2<'Reader'>
```
Added in v2.8.3
## Functor
**Signature**
Expand Down Expand Up @@ -314,6 +326,16 @@ export declare const Profunctor: Profunctor2<'Reader'>
Added in v2.7.0
## Strong
**Signature**
```ts
export declare const Strong: Strong2<'Reader'>
```
Added in v2.8.3
## URI
**Signature**
Expand Down
2 changes: 0 additions & 2 deletions src/Choice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ import { Profunctor, Profunctor2, Profunctor3, Profunctor4 } from './Profunctor'
import { Category, Category2, Category3 } from './Category'
import { identity } from './function'

// TODO: remove module in v3

/**
* @category type classes
* @since 2.0.0
Expand Down
3 changes: 2 additions & 1 deletion src/Reader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ export const Strong: Strong2<URI> = {
}

/**
* @internal instances
* @category instances
* @since 2.8.3
*/
export const Choice: Choice2<URI> = {
URI,
Expand Down
2 changes: 0 additions & 2 deletions src/Strong.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ import { identity } from './function'
import { HKT2, Kind2, Kind3, URIS2, URIS3, URIS4, Kind4 } from './HKT'
import { Profunctor, Profunctor2, Profunctor3, Profunctor4 } from './Profunctor'

// TODO: remove module in v3

/* tslint:disable:readonly-array */

/**
Expand Down

0 comments on commit 6a3c7cb

Please sign in to comment.