diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3e94446..8efcc4c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,2 +1,12 @@
+## [1.1.0] 2019-06-21
+### Updated dependencies
+- `expo@32.0.0` to `expo@33.0.0`
+- `galio-framework@0.5.1` to `galio-framework@0.5.3`
+- `react-native SDK@32.0.0` to `react-native SDK@33.0.0`
+- `react-navigation@3.8.1` to `react-navigation@3.11.0`
+- `react@16.5.0` to `react@16.8.3`
+- added `expo-font@5.0.1`
+
+
## [1.0.0] 2019-06-07
### Initial Release
\ No newline at end of file
diff --git a/app.json b/app.json
index 7dc4ba2..4f05f48 100644
--- a/app.json
+++ b/app.json
@@ -3,12 +3,12 @@
"name": "Argon FREE React Native",
"slug": "argon-free-react-native",
"privacy": "public",
- "sdkVersion": "32.0.0",
+ "sdkVersion": "33.0.0",
"platforms": [
"ios",
"android"
],
- "version": "1.0.0",
+ "version": "1.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
diff --git a/components/Icon.js b/components/Icon.js
index 4a768ad..eb3e922 100644
--- a/components/Icon.js
+++ b/components/Icon.js
@@ -1,5 +1,5 @@
import React from 'react';
-import { Font } from 'expo';
+import * as Font from 'expo-font';
import { createIconSetFromIcoMoon } from '@expo/vector-icons';
import { Icon } from 'galio-framework';
diff --git a/package.json b/package.json
index 4415cce..792b34f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "argon-react-native",
- "version": "1.0.0",
+ "version": "1.1.0",
"description": "Argon React Native, based on Argon Design System. Coded by Creative Tim",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
@@ -14,13 +14,14 @@
"url": "git+https://github.com/creativetimofficial/argon-react-native.git"
},
"dependencies": {
- "expo": "^32.0.0",
- "galio-framework": "^0.5.1",
+ "expo": "^33.0.0",
+ "expo-font": "^5.0.1",
+ "galio-framework": "^0.5.3",
"prop-types": "^15.7.2",
- "react": "16.5.0",
- "react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
+ "react": "16.8.3",
+ "react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
"react-native-modal-dropdown": "^0.6.2",
- "react-navigation": "^3.8.1"
+ "react-navigation": "^3.11.0"
},
"devDependencies": {
"babel-preset-expo": "^5.0.0"
diff --git a/screens/Elements.js b/screens/Elements.js
index aedd7bf..a6e58f7 100644
--- a/screens/Elements.js
+++ b/screens/Elements.js
@@ -286,8 +286,8 @@ class Elements extends React.Component {
Manage Options
@@ -312,7 +312,7 @@ class Elements extends React.Component {
onlyIcon
shadowless
icon="facebook"
- iconFamily="FontAwesome"
+ iconFamily="Font-Awesome"
iconColor={theme.COLORS.WHITE}
iconSize={theme.SIZES.BASE * 1.625}
color={theme.COLORS.FACEBOOK}
@@ -325,7 +325,7 @@ class Elements extends React.Component {
onlyIcon
shadowless
icon="twitter"
- iconFamily="FontAwesome"
+ iconFamily="Font-Awesome"
iconColor={theme.COLORS.WHITE}
iconSize={theme.SIZES.BASE * 1.625}
color={theme.COLORS.TWITTER}
@@ -338,7 +338,7 @@ class Elements extends React.Component {
onlyIcon
shadowless
icon="dribbble"
- iconFamily="FontAwesome"
+ iconFamily="Font-Awesome"
iconColor={theme.COLORS.WHITE}
iconSize={theme.SIZES.BASE * 1.625}
color={theme.COLORS.DRIBBBLE}
diff --git a/screens/Register.js b/screens/Register.js
index 82e8f6e..d24fe49 100644
--- a/screens/Register.js
+++ b/screens/Register.js
@@ -33,7 +33,7 @@ class Register extends React.Component {