Skip to content

Commit

Permalink
release: v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur Yorsh committed Apr 8, 2020
1 parent 1ef6929 commit 88d2c2e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.3.1 (2020-04-08)

* Bump to latest Eva Icons ([1ef6929](/~https://github.com/artyorsh/react-native-eva-icons/commit/1ef6929))

## 1.3.0 (2020-01-19)

* React Native Web support ([464d0d0](/~https://github.com/artyorsh/react-native-eva-icons/commit/464d0d0))
Expand Down
2 changes: 2 additions & 0 deletions lib/animation/pulseAnimation.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {
Animated,
Easing,
Platform,
ViewProps,
} from 'react-native';
import {
Expand All @@ -13,6 +14,7 @@ const DEFAULT_CONFIG: PulseAnimationConfig = {
end: 1.25,
easing: Easing.linear,
duration: 500,
useNativeDriver: Platform.OS !== 'web',
};

type TimingAnimationConfig = Omit<Animated.TimingAnimationConfig, 'toValue'>;
Expand Down
2 changes: 2 additions & 0 deletions lib/animation/shakeAnimation.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {
Animated,
Easing,
Platform,
ViewProps,
} from 'react-native';
import {
Expand All @@ -14,6 +15,7 @@ const DEFAULT_CONFIG: ShakeAnimationConfig = {
easing: Easing.linear,
duration: 25,
cycles: 8,
useNativeDriver: Platform.OS !== 'web',
};

type TimingAnimationConfig = Omit<Animated.TimingAnimationConfig, 'toValue'>;
Expand Down
2 changes: 2 additions & 0 deletions lib/animation/zoomAnimation.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {
Animated,
Easing,
Platform,
ViewProps,
} from 'react-native';
import {
Expand All @@ -13,6 +14,7 @@ const DEFAULT_CONFIG: ZoomAnimationConfig = {
end: 0.5,
easing: Easing.linear,
duration: 500,
useNativeDriver: Platform.OS !== 'web',
};

type TimingAnimationConfig = Omit<Animated.TimingAnimationConfig, 'toValue'>;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-eva-icons",
"version": "1.3.0",
"version": "1.3.1",
"private": true,
"description": "Eva Icons for React Native",
"workspaces": {
Expand Down

0 comments on commit 88d2c2e

Please sign in to comment.