Skip to content

Commit 9103308

Browse files
committed
Release 0.2.6
1 parent 2f7f989 commit 9103308

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
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.6](https://github.com/FortAwesome/react-native-fontawesome/releases/tag/0.2.6) - 2020-10-01
10+
11+
### Fixed
12+
13+
- Removed dependence on React Native for Web's ViewPropTypes #72
14+
15+
---
16+
917
## [0.2.5](https://github.com/FortAwesome/react-native-fontawesome/releases/tag/0.2.5) - 2020-05-14
1018

1119
### Added

DEVELOPMENT.md

+21-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,27 @@ And change it to something like this:
9191
1. `npm run dist`
9292
1. `npm run test`
9393
1. `npm publish`
94-
1. `npm pack`
95-
1. `CLOUDSMITH_API_KEY=API_TOKEN cloudsmith upload npm fortawesome/fontawesome-pro ./fortawesome-react-native-fontawesome-VERSION.tgz`
94+
1. `npm publish --registry https://npm.fontawesome.com` (publish to Pro registry)
9695
1. `git add . && git commit -m 'Release VERSION'`
9796
1. `git push`
9897
1. Create a [new release](https://github.com/FortAwesome/react-native-fontawesome/releases/new) with `CHANGELOG` details
98+
99+
## Authenticating with the npm.fontawesome.com registry
100+
101+
Contributors with authorization to publish to npm.fontawesome.com will receive an invite
102+
from a Font Awesome project owner.
103+
104+
1. Respond to the invite in your email
105+
1. Let the owner know when you've setup your account
106+
1. Owner will add you to the team
107+
108+
You can then run:
109+
110+
```
111+
npm login --registry https://npm.fontawesome.com
112+
```
113+
114+
- The username is the "slug" for your Cloudsmith account. For example mine is "rob-madole".
115+
- Enter the password that you setup just a few minutes ago.
116+
- It says the your email is PUBLIC. Pretty sure that's false since the auth is through Cloudsmith.
117+
- This doesn't overwrite your standard login, just adds to your `~/.npmrc`

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -440,14 +440,13 @@ And then:
440440

441441
Community:
442442

443-
"David Martin <github.com/iamdavidmartin>",
444-
445443
| | Name | GitHub |
446444
| :---------------------------------------------------------: | ----------------- | ---------------------------------------------------- |
447445
| <img src="https://github.com/dizy.png?size=72" /> | Dizy | [@dizy](https://github.com/dizy) |
448446
| <img src="https://github.com/iamdavidmartin.png?size=72" /> | David Martin | [@iamdavidmartin](https://github.com/iamdavidmartin) |
449447
| <img src="https://github.com/puremana.png?size=72" /> | Jeremey | [@puremana](https://github.com/puremana) |
450448
| <img src="https://github.com/schonfeld.png?size=72" /> | Michael Schonfeld | [@schonfeld](https://github.com/schonfeld) |
449+
| <img src="https://github.com/golya.png?size=72" /> | Ádám Gólya | [@golya](https://github.com/golya) |
451450

452451
The Font Awesome team:
453452

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.5",
3+
"version": "0.2.6",
44
"description": "Official React Native component for Font Awesome 5",
55
"main": "index.js",
66
"scripts": {
@@ -21,7 +21,8 @@
2121
2222
"David Martin <github.com/iamdavidmartin>",
2323
"Jeremy <github.com/puremana>",
24-
"Michael Schonfeld <github.com/schonfeld>"
24+
"Michael Schonfeld <github.com/schonfeld>",
25+
"Ádám Gólya <github.com/golya>"
2526
],
2627
"license": "MIT",
2728
"peerDependencies": {

0 commit comments

Comments
 (0)