From ab3c983f842f56cc6339e4f7cae31b7dd02ab7e3 Mon Sep 17 00:00:00 2001 From: Erik Rasmussen Date: Thu, 5 Feb 2026 10:43:51 +0100 Subject: [PATCH] Fix #184: Bump version to 4.0.1 to republish with correct TypeScript types v4.0.0 was published with outdated dist/index.d.ts that was missing the generic parameter in UseFieldArrayConfig. The source file (src/index.d.ts) is correct, but dist/ needs to be rebuilt before publishing. This version bump will trigger a new build and publish with the correct types: export interface UseFieldArrayConfig extends UseFieldConfig { // <-- Generic was missing in v4.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1421d07..8b240e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-final-form-arrays", - "version": "4.0.0", + "version": "4.0.1", "description": "A component for rendering and editing arrays 🏁 React Final Form", "main": "dist/react-final-form-arrays.cjs.js", "jsnext:main": "dist/react-final-form-arrays.es.js",