diff --git a/CHANGELOG.md b/CHANGELOG.md index c4ea50b..46282ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### Build: 🏠 `3.2.1` - react-native-circular-progress-indicator + +--- +- Bug fixes and improvements. ### Build: 🏠 `3.2.0` - react-native-circular-progress-indicator --- diff --git a/package.json b/package.json index f5ef312..80c3377 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-circular-progress-indicator", - "version": "3.2.0", + "version": "3.2.1", "description": "React Native customizable circular progress indicator", "main": "index", "scripts": { diff --git a/src/components/progressCircle/index.tsx b/src/components/progressCircle/index.tsx index f4db7b4..8c3975b 100644 --- a/src/components/progressCircle/index.tsx +++ b/src/components/progressCircle/index.tsx @@ -1,7 +1,7 @@ import React, { useMemo } from 'react'; import Svg, { G, Circle, Defs, LinearGradient, Stop } from 'react-native-svg'; import Animated from 'react-native-reanimated'; -import COLORS from '../..//utils/colors'; +import COLORS from '../../utils/colors'; import styles from './styles'; import { ProgressCircleProps } from './types';