Skip to content

Commit 2de4ef3

Browse files
committed
chore: prepare for 1.0.0 release
1 parent da7331a commit 2de4ef3

File tree

4 files changed

+472
-365
lines changed

4 files changed

+472
-365
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!-- markdownlint-disable MD024 MD034 MD033 -->
2+
3+
# Release Notes
4+
5+
## 1.0.0
6+
7+
- initial official release (but it's been in use months)
8+
- fix(ios): add missing import (#50, thanks @nhnam!)
9+
- docs(README): add width+height in example button style (#55, thanks @jonstuebe!)
10+
- chore: upgrade module dependencies (`yarn upgrade --latest`) (@mikehardy)
11+
- chore: add typescript analyzer (`yarn analyze`) (@mikehardy)
12+

example/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ PODS:
217217
- React-cxxreact (= 0.61.5)
218218
- React-jsi (= 0.61.5)
219219
- ReactCommon/jscallinvoker (= 0.61.5)
220-
- RNAppleAuthentication (0.0.2):
220+
- RNAppleAuthentication (1.0.0):
221221
- React
222222
- Yoga (1.14.0)
223223

@@ -336,9 +336,9 @@ SPEC CHECKSUMS:
336336
React-RCTText: 9ccc88273e9a3aacff5094d2175a605efa854dbe
337337
React-RCTVibration: a49a1f42bf8f5acf1c3e297097517c6b3af377ad
338338
ReactCommon: 198c7c8d3591f975e5431bec1b0b3b581aa1c5dd
339-
RNAppleAuthentication: b18b4d98d94ecc1a0c8ab033736367f21768d5df
339+
RNAppleAuthentication: 954b347c26ffb638265c828a5003ce1fa6971120
340340
Yoga: f2a7cd4280bfe2cca5a7aed98ba0eb3d1310f18b
341341

342342
PODFILE CHECKSUM: b1d11349ce6cf63de2878e6ee443202d7fc02a23
343343

344-
COCOAPODS: 1.8.4
344+
COCOAPODS: 1.9.1

package.json

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"name": "@invertase/react-native-apple-authentication",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
55
"description": "A complete Apple Authentication services API for React Native iOS apps.",
66
"main": "lib/index.js",
77
"types": "lib/index.d.ts",
88
"scripts": {
9+
"analyze": "npx tsc --noEmit",
910
"build": "genversion --semi lib/version.js",
1011
"build:clean": "rimraf rimraf ios/build",
1112
"build:docs": "typedoc --includeDeclarations --excludeExternals --out docs --plugin typedoc-plugin-markdown --hideBreadcrumbs",
12-
"prepare": "yarn run build"
13+
"prepare": "yarn analyze && yarn build"
1314
},
1415
"repository": {
1516
"type": "git",
@@ -30,15 +31,16 @@
3031
"apple authentication"
3132
],
3233
"devDependencies": {
33-
"@react-native-community/eslint-config": "^0.0.5",
34-
"genversion": "^2.2.0",
35-
"prettier": "^1.19.1",
36-
"rimraf": "^3.0.0",
37-
"typedoc": "^0.15.3",
38-
"typedoc-plugin-markdown": "^2.2.11",
39-
"typescript": "^3.7.2"
34+
"@react-native-community/eslint-config": "^1.1.0",
35+
"genversion": "^2.2.1",
36+
"prettier": "^2.0.5",
37+
"rimraf": "^3.0.2",
38+
"typedoc": "^0.17.6",
39+
"typedoc-plugin-markdown": "^2.2.17",
40+
"typescript": "^3.8.3"
4041
},
4142
"publishConfig": {
4243
"access": "public"
43-
}
44+
},
45+
"dependencies": {}
4446
}

0 commit comments

Comments
 (0)