Skip to content

Commit db357e2

Browse files
committed
Release 0.2.4
1 parent 0f2461f commit db357e2

File tree

4 files changed

+46
-29
lines changed

4 files changed

+46
-29
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
---
88

9+
## [0.2.4](https://github.com/FortAwesome/react-fontawesome/releases/tag/0.2.4) - 2025-08-15
10+
11+
### Changed
12+
13+
- Update TypeScript to use the React.JSX namespace (#571)
14+
- Allow passing undefined to component props with exactOptionalPropertyTypes (#574)
15+
16+
---
17+
918
## [0.2.3](https://github.com/FortAwesome/react-fontawesome/releases/tag/0.2.3) - 2025-07-23
1019

1120
### Changed

README.md

Lines changed: 30 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@
1010
1111
<!-- toc -->
1212

13-
- [Documentation](#documentation)
14-
- [How to Help](#how-to-help)
15-
- [Contributors](#contributors)
16-
- [Releasing this project (only project owners can do this)](#releasing-this-project-only-project-owners-can-do-this)
13+
- [react-fontawesome](#react-fontawesome)
14+
- [Documentation](#documentation)
15+
- [Compatibility](#compatibility)
16+
- [How to Help](#how-to-help)
17+
- [Contributors](#contributors)
18+
- [Releasing this project (only project owners can do this)](#releasing-this-project-only-project-owners-can-do-this)
1719

1820
<!-- tocstop -->
1921

@@ -22,10 +24,11 @@
2224
`react-fontawesome` now supports `forwardRef` for version `0.2.x` or above. This was a breaking change so if you are using React older than version 16.3.0 choose the `0.1.x` version of this component.
2325

2426
## Compatibility
27+
2528
| React version | react-fontawesome version |
26-
| - | - |
27-
| < 16.3.0 | 0.1.x |
28-
| >= 16.3.0 | 0.2.x |
29+
| ------------- | ------------------------- |
30+
| < 16.3.0 | 0.1.x |
31+
| >= 16.3.0 | 0.2.x |
2932

3033
Official documentation is hosted at fontawesome.com:
3134

@@ -48,24 +51,26 @@ The following contributors have either helped to start this project, have contri
4851
code, are actively maintaining it (including documentation), or in other ways
4952
being awesome contributors to this project. **We'd like to take a moment to recognize them.**
5053

51-
| Name | GitHub |
52-
| ----------------- | --------------------------------------------------------- |
53-
| Nate Radebaugh | [@NateRadebaugh](https://github.com/NateRadebaugh) |
54-
| Kirk Ross | [@kirkbross](https://github.com/kirkbross) |
55-
| Prateek Goel | [@prateekgoel](https://github.com/prateekgoel) |
56-
| Naor Torgeman | [@naortor](https://github.com/naortor) |
57-
| Matthew Hand | [@mmhand123](https://github.com/mmhand123) |
58-
| calvinf | [@calvinf](https://github.com/calvinf) |
59-
| Bill Parrott | [@chimericdream](https://github.com/chimericdream) |
60-
| Mike Lynch | [@baelec](https://github.com/baelec) |
61-
| Lukáš Rod | [@rodlukas](https://github.com/rodlukas) |
62-
| Proudust | [@proudust](https://github.com/proudust) |
63-
| Tiago Sousa | [@TiagoPortfolio](https://github.com/TiagoPortfolio) |
64-
| Alexey Victorov | [@AliMamed](https://github.com/AliMamed) |
65-
| Calum Smith | [@cpmsmith](https://github.com/cpmsmith) |
66-
| squiaios | [@squiaios](https://github.com/squiaios) |
67-
| WyvernDrexx | [@WyvernDrexx](https://github.com/WyvernDrexx) |
68-
| Font Awesome Team | [@FortAwesome](https://github.com/orgs/FortAwesome/people)|
54+
| Name | GitHub |
55+
| ----------------- | ---------------------------------------------------------- |
56+
| Nate Radebaugh | [@NateRadebaugh](https://github.com/NateRadebaugh) |
57+
| Kirk Ross | [@kirkbross](https://github.com/kirkbross) |
58+
| Prateek Goel | [@prateekgoel](https://github.com/prateekgoel) |
59+
| Naor Torgeman | [@naortor](https://github.com/naortor) |
60+
| Matthew Hand | [@mmhand123](https://github.com/mmhand123) |
61+
| calvinf | [@calvinf](https://github.com/calvinf) |
62+
| Bill Parrott | [@chimericdream](https://github.com/chimericdream) |
63+
| Mike Lynch | [@baelec](https://github.com/baelec) |
64+
| Lukáš Rod | [@rodlukas](https://github.com/rodlukas) |
65+
| Proudust | [@proudust](https://github.com/proudust) |
66+
| Tiago Sousa | [@TiagoPortfolio](https://github.com/TiagoPortfolio) |
67+
| Alexey Victorov | [@AliMamed](https://github.com/AliMamed) |
68+
| Calum Smith | [@cpmsmith](https://github.com/cpmsmith) |
69+
| squiaios | [@squiaios](https://github.com/squiaios) |
70+
| WyvernDrexx | [@WyvernDrexx](https://github.com/WyvernDrexx) |
71+
| Jon Defresne | [@jdufresne](https://github.com/jdufresne) |
72+
| Charles Harwood | [@charles4221](https://github.com/charles4221) |
73+
| Font Awesome Team | [@FortAwesome](https://github.com/orgs/FortAwesome/people) |
6974

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

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@fortawesome/react-fontawesome",
33
"description": "Official React component for Font Awesome",
4-
"version": "0.2.3",
4+
"version": "0.2.4",
55
"main": "index.js",
66
"module": "index.es.js",
77
"jsnext:main": "index.es.js",
@@ -29,7 +29,10 @@
2929
"Alexey Victorov <github.com/AliMamed>",
3030
"Calum Smith <github.com/cpmsmith>",
3131
"squiaios <github.com/squiaios>",
32-
"WyvernDrexx <github.com/WyvernDrexx>"
32+
"WyvernDrexx <github.com/WyvernDrexx>",
33+
"Jason Lundien <github.com/jasonlundien>",
34+
"Jon Defresne <github.com/jdufresne>",
35+
"Charles Harwood <github.com/charles4221>"
3336
],
3437
"license": "MIT",
3538
"scripts": {

0 commit comments

Comments
 (0)