Skip to content

Commit 678217c

Browse files
committed
Release 0.2.3
1 parent a0064ed commit 678217c

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
---
88

9+
## [0.2.3](https://github.com/FortAwesome/react-native-fontawesome/releases/tag/0.2.3) - 2020-03-06
10+
11+
### Fixed
12+
13+
- Support arrays in style property #28 #40 #46
14+
15+
---
16+
917
## [0.2.2](https://github.com/FortAwesome/react-native-fontawesome/releases/tag/0.2.2) - 2020-02-17
1018

1119
### Fixed

DEVELOPMENT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ to get your environment set up in your OS. For Mac OS X, that would look like:
2121
Tools.
2222
1. clone this repo
2323

24-
2524
## Launch the Example App
2625

2726
In the `examples/Hello` subdirectory, the following script commands are available:
@@ -87,6 +86,7 @@ And change it to something like this:
8786

8887
1. Edit `package.json` and update the version number
8988
1. Add new contributors to the `contributors` section
89+
1. Update the `README.md` and add any contributors
9090
1. Update the `CHANGELOG.md`
9191
1. `npm run dist`
9292
1. `npm run test`

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -425,9 +425,13 @@ And then:
425425

426426
Community:
427427

428-
| | Name | GitHub |
429-
| :-----------------------------------------------: | ------ | -------------------------------- |
430-
| <img src="https://github.com/dizy.png?size=72" /> | Dizy | [@dizy](https://github.com/dizy) |
428+
"David Martin <github.com/iamdavidmartin>",
429+
430+
| | Name | GitHub |
431+
| :---------------------------------------------------------: | -------------- | ---------------------------------------------------- |
432+
| <img src="https://github.com/dizy.png?size=72" /> | Dizy | [@dizy](https://github.com/dizy) |
433+
| <img src="https://github.com/iamdavidmartin.png?size=72" /> | David Martin | [@iamdavidmartin](https://github.com/iamdavidmartin) |
434+
| <img src="https://github.com/puremana.png?size=72" /> | Jeremey | [@puremana](https://github.com/puremana) |
431435

432436
The Font Awesome team:
433437

dist/components/FontAwesomeIcon.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
2828

2929
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
3030

31-
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
31+
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3232

3333
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
3434

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fortawesome/react-native-fontawesome",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Official React Native component for Font Awesome 5",
55
"main": "index.js",
66
"scripts": {
@@ -19,7 +19,8 @@
1919
"Rob Madole <[email protected]>",
2020
"Mike Wilkerson <[email protected]>",
2121
22-
"David Martin <github.com/iamdavidmartin>"
22+
"David Martin <github.com/iamdavidmartin>",
23+
"Jeremy <github.com/puremana>"
2324
],
2425
"license": "MIT",
2526
"peerDependencies": {

0 commit comments

Comments
 (0)