Skip to content

Commit e91bde1

Browse files
authored
version 2.16.10 (#1959)
1 parent b349dbc commit e91bde1

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
**Note**: A feature tagged as Experimental is in a
1717
high state of flux, you're at risk of it changing without notice.
1818

19+
# 2.16.10
20+
21+
**Polish**
22+
23+
Add apFirstW and apSecondW to ReaderTask, #1958
24+
1925
# 2.16.9
2026

2127
**Polish**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fp-ts",
3-
"version": "2.16.9",
3+
"version": "2.16.10",
44
"description": "Functional programming in TypeScript",
55
"main": "./lib/index.js",
66
"module": "./es6/index.js",

src/ReaderTask.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ export const apFirst = /*#__PURE__*/ apFirst_(ApplyPar)
257257
*
258258
* The `W` suffix (short for **W**idening) means that the environment types will be merged.
259259
*
260-
* @since 2.17.0
260+
* @since 2.16.10
261261
*/
262262
export const apFirstW: <R2, B>(
263263
second: ReaderTask<R2, B>
@@ -275,7 +275,7 @@ export const apSecond = /*#__PURE__*/ apSecond_(ApplyPar)
275275
*
276276
* The `W` suffix (short for **W**idening) means that the environment types will be merged.
277277
*
278-
* @since 2.17.0
278+
* @since 2.16.10
279279
*/
280280
export const apSecondW: <R2, B>(
281281
second: ReaderTask<R2, B>

0 commit comments

Comments
 (0)