Skip to content

Commit

Permalink
Release 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
robmadole committed Jun 2, 2020
1 parent 399cefb commit cc2c50c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

---

## [0.1.10](https://github.com/FortAwesome/react-fontawesome/releases/tag/0.1.10) - 2020-06-02

### Added

- Support for forward ref #341

---

## [0.1.9](https://github.com/FortAwesome/react-fontawesome/releases/tag/0.1.9) - 2020-03-05

### Fixed
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -679,6 +679,7 @@ being awesome contributors to this project. **We'd like to take a moment to reco
| <img src="https://github.com/chimericdream.png?size=72" /> | Bill Parrott | [@chimericdream](https://github.com/chimericdream) |
| <img src="https://github.com/baelec.png?size=72" /> | Mike Lynch | [@baelec](https://github.com/baelec) |
| <img src="https://github.com/rodlukas.png?size=72" /> | Lukáš Rod | [@rodlukas](https://github.com/rodlukas) |
| <img src="https://github.com/proudust.png?size=72" /> | Proudust | [@proudust](https://github.com/proudust) |

If we've missed someone (which is quite likely) submit a Pull Request to us and we'll get it resolved.

Expand Down
Binary file added fortawesome-react-fontawesome-0.1.10.tgz
Binary file not shown.
6 changes: 3 additions & 3 deletions index.es.js
Expand Up @@ -300,9 +300,9 @@ function objectWithKey(key, value) {
return Array.isArray(value) && value.length > 0 || !Array.isArray(value) && value ? _defineProperty({}, key, value) : {};
}

function FontAwesomeIcon(_ref2) {
var forwardedRef = _ref2.forwardedRef,
props = _objectWithoutProperties(_ref2, ["forwardedRef"]);
function FontAwesomeIcon(_ref) {
var forwardedRef = _ref.forwardedRef,
props = _objectWithoutProperties(_ref, ["forwardedRef"]);

var iconArgs = props.icon,
maskArgs = props.mask,
Expand Down
6 changes: 3 additions & 3 deletions index.js
Expand Up @@ -305,9 +305,9 @@
return Array.isArray(value) && value.length > 0 || !Array.isArray(value) && value ? _defineProperty({}, key, value) : {};
}

function FontAwesomeIcon(_ref2) {
var forwardedRef = _ref2.forwardedRef,
props = _objectWithoutProperties(_ref2, ["forwardedRef"]);
function FontAwesomeIcon(_ref) {
var forwardedRef = _ref.forwardedRef,
props = _objectWithoutProperties(_ref, ["forwardedRef"]);

var iconArgs = props.icon,
maskArgs = props.mask,
Expand Down
5 changes: 3 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "@fortawesome/react-fontawesome",
"description": "Official React component for Font Awesome 5",
"version": "0.1.9",
"version": "0.1.10",
"main": "index.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
Expand All @@ -23,7 +23,8 @@
"Calvin Freitas <github.com/calvinf>",
"Bill Parrott <github.com/chimericdream>",
"Mike Lynch <github.com/baelec>",
"Lukáš Rod <github.com/rodlukas>"
"Lukáš Rod <github.com/rodlukas>",
"Proudust <github.com/proudust>"
],
"license": "MIT",
"scripts": {
Expand Down

0 comments on commit cc2c50c

Please sign in to comment.