From 6a279c924d49e688a9342c1f47c9bdadab0f738b Mon Sep 17 00:00:00 2001 From: Release Workflow Date: Mon, 16 Jun 2025 00:04:45 +0000 Subject: [PATCH 1/6] chore: release 1.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 078a2d9..5db6c74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-input-code-otp", - "version": "0.5.1", + "version": "1.0.0", "description": "react-native-input-code-otp is a high-performance and fully customizable OTP input component for React Native, inspired by @shadcn/ui.", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", From e1f27c410484f63623efe67cc2fb3dfc6176d314 Mon Sep 17 00:00:00 2001 From: Release Workflow Date: Mon, 16 Jun 2025 00:12:53 +0000 Subject: [PATCH 2/6] chore: release 1.0.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5db6c74..362ab34 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-input-code-otp", - "version": "1.0.0", + "version": "1.0.1", "description": "react-native-input-code-otp is a high-performance and fully customizable OTP input component for React Native, inspired by @shadcn/ui.", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", From 03706dbebf01ff678d5e4392cda644adf9396611 Mon Sep 17 00:00:00 2001 From: Release Workflow Date: Mon, 11 Aug 2025 23:36:36 +0000 Subject: [PATCH 3/6] chore: release 1.0.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 362ab34..fe45346 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-input-code-otp", - "version": "1.0.1", + "version": "1.0.2", "description": "react-native-input-code-otp is a high-performance and fully customizable OTP input component for React Native, inspired by @shadcn/ui.", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", From bccc617bbf5a73651c213c57f90cf6857082192c Mon Sep 17 00:00:00 2001 From: Release Workflow Date: Sat, 30 Aug 2025 04:26:28 +0000 Subject: [PATCH 4/6] chore: release 1.0.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fe45346..5e045ae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-input-code-otp", - "version": "1.0.2", + "version": "1.0.3", "description": "react-native-input-code-otp is a high-performance and fully customizable OTP input component for React Native, inspired by @shadcn/ui.", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", From 2c5d2f64267ed90019950b2cdc87a0a342c6fecc Mon Sep 17 00:00:00 2001 From: Release Workflow Date: Sun, 5 Oct 2025 21:38:03 +0000 Subject: [PATCH 5/6] chore: release 1.1.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5e045ae..1de43ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-input-code-otp", - "version": "1.0.3", + "version": "1.1.0", "description": "react-native-input-code-otp is a high-performance and fully customizable OTP input component for React Native, inspired by @shadcn/ui.", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", From e7d18e3ae14c9689faebf19629a95b2bf027da37 Mon Sep 17 00:00:00 2001 From: johelder Date: Mon, 6 Oct 2025 19:31:09 -0300 Subject: [PATCH 6/6] fix: enable native driver for caret animation --- src/components/caret.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/caret.tsx b/src/components/caret.tsx index ba2e482..7e07a11 100644 --- a/src/components/caret.tsx +++ b/src/components/caret.tsx @@ -19,7 +19,7 @@ export function Caret() { Animated.timing(opacity, { toValue: 0, duration: 500, - useNativeDriver: false, + useNativeDriver, }), Animated.timing(opacity, { toValue: 1,