Skip to content

Commit

Permalink
version 2.16.5
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Mar 25, 2024
1 parent 693220a commit a94d4f8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .eslintrc.json
Expand Up @@ -27,6 +27,13 @@
"import/no-duplicates": "error",
"import/no-unresolved": "off",
"import/order": "off",
"simple-import-sort/imports": "error"
"simple-import-sort/imports": "error",
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.property.name='push'] > SpreadElement.arguments",
"message": "Do not use spread arguments in Array.push"
}
]
}
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -16,6 +16,12 @@
**Note**: A feature tagged as Experimental is in a
high state of flux, you're at risk of it changing without notice.

# 2.16.5

**Polish**

Resolved a RangeError where the maximum call stack size was exceeded when invoking `chainWithIndex`, #1931

# 2.16.4

**Polish**
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "fp-ts",
"version": "2.16.4",
"version": "2.16.5",
"description": "Functional programming in TypeScript",
"main": "./lib/index.js",
"module": "./es6/index.js",
Expand Down

0 comments on commit a94d4f8

Please sign in to comment.