Skip to content

Commit 947f5de

Browse files
committed
3.0.2
1 parent b0bbed9 commit 947f5de

5 files changed

Lines changed: 683 additions & 38 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
# Changelog of `@reason-react-native/paper`
22

3-
## X.Y.Z - 20YY-MM-DD
3+
## 3.0.2 - 2020-11-07
44

5-
Short & concise description
6-
7-
### 💥 Breaking changes
8-
9-
- Something, in [1234567](<link to commit on github>) by @<usename>
10-
11-
### 🐛 Fixes
12-
13-
- Something else, in [1234567](<link to commit on github>) by @<usename>
14-
15-
### Internal changes
16-
17-
(If worth mentioning)
5+
Initial release

package.json

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"name": "@reason-react-native/paper",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"publishConfig": {
55
"access": "public"
66
},
77
"peerDependencies": {
8-
"reason-react": "^0.7.0",
9-
"reason-react-native": "^0.60.0"
8+
"react-native-paper": "^3.0.0",
9+
"reason-react": "^0.9.0",
10+
"reason-react-native": "^0.63.0"
1011
},
1112
"repository": "https://github.com/reason-react-native/paper.git",
1213
"license": "MIT",
@@ -34,16 +35,18 @@
3435
"re:clean-build": "bsb -clean-world -make-world",
3536
"start": "yarn re:start",
3637
"build": "yarn re:build",
37-
"test": "yarn re:clean-build"
38+
"test": "yarn re:clean-build",
39+
"release": "npmpub"
3840
},
3941
"devDependencies": {
40-
"bs-platform": "8.2.0",
41-
"husky": "^1.3.0",
42-
"lint-staged": "^10.1.1",
43-
"prettier": "^1.18.0",
42+
"bs-platform": "^8.2.0",
43+
"husky": "^4.0.0",
44+
"lint-staged": "^10.0.0",
45+
"npmpub": "^5.0.0",
46+
"prettier": "^2.0.0",
4447
"react-native-paper": "^3.0.0",
45-
"reason-react": "0.9.0",
46-
"reason-react-native": "0.62.3"
48+
"reason-react": "^0.9.0",
49+
"reason-react-native": "^0.63.0"
4750
},
4851
"prettier": {
4952
"trailingComma": "all"

src/Paper__Snackbar.re

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module Action = {
1515

1616
[@bs.val] external none: t = "null";
1717

18-
[@bs.obj] external make: (~label: string, ~onPress: unit => unit) => t = "";
18+
[@bs.obj] external make: (~label: string, ~onPress: unit => unit) => t;
1919
};
2020

2121
[@bs.module "react-native-paper"] [@react.component]

src/Paper__ThemeProvider.re

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ module Theme = {
1717
~placeholder: string,
1818
~backdrop: string
1919
) =>
20-
t =
21-
"";
20+
t;
2221

2322
[@bs.get] external primary: t => string = "primary";
2423
[@bs.get] external accent: t => string = "accent";
@@ -46,8 +45,7 @@ module Theme = {
4645

4746
[@bs.obj]
4847
external make:
49-
(~regular: font, ~medium: font, ~light: font, ~thin: font) => t =
50-
"";
48+
(~regular: font, ~medium: font, ~light: font, ~thin: font) => t;
5149
};
5250

5351
[@bs.obj]
@@ -59,8 +57,7 @@ module Theme = {
5957
~fonts: Fonts.configured=?,
6058
unit
6159
) =>
62-
t =
63-
"";
60+
t;
6461

6562
[@bs.get] external fonts: t => Fonts.configured = "fonts";
6663
[@bs.get] external colors: t => Colors.t = "colors";

0 commit comments

Comments
 (0)