Skip to content

Commit

Permalink
version 2.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Jan 17, 2022
1 parent ee42bff commit 0ebc92c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,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.3.12

- **Polish**
- Add missing pure annotations, #175 (@OliverJAsh)

# 2.3.11

- **Bug Fix**
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/Traversal.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ export declare const traverse: <T extends
| 'Eq'
| 'ReadonlyNonEmptyArray'
| 'ReadonlyArray'
| 'Identity'
| 'NonEmptyArray'
| 'Identity'
| 'Array'
| 'Record'>(
T: Traversable1<T>
Expand Down Expand Up @@ -441,8 +441,8 @@ export declare const fromTraversable: {
| 'Eq'
| 'ReadonlyNonEmptyArray'
| 'ReadonlyArray'
| 'Identity'
| 'NonEmptyArray'
| 'Identity'
| 'Array'
| 'Record'
>(
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/index.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -2161,7 +2161,7 @@ export interface OptionalFromPath<S> {
K2 extends keyof NonNullable<S[K1]>,
K3 extends keyof NonNullable<NonNullable<S[K1]>[K2]>,
K4 extends keyof NonNullable<NonNullable<NonNullable<S[K1]>[K2]>[K3]>,
K5 extends keyof NonNullable<NonNullable<NonNullable<S[K1]>[K2]>[K3]>[K4]
K5 extends keyof NonNullable<NonNullable<NonNullable<NonNullable<S[K1]>[K2]>[K3]>[K4]>
>(
path: [K1, K2, K3, K4, K5]
): Optional<S, NonNullable<NonNullable<NonNullable<NonNullable<NonNullable<S[K1]>[K2]>[K3]>[K4]>[K5]>>
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": "monocle-ts",
"version": "2.3.11",
"version": "2.3.12",
"description": "A porting of scala monocle library to TypeScript",
"main": "lib/index.js",
"module": "es6/index.js",
Expand Down

0 comments on commit 0ebc92c

Please sign in to comment.