Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit faa6bf3

Browse files
committed
Bump version
And add comments about bs-fetch dependency.
1 parent 31fdb22 commit faa6bf3

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 0.19.1
2+
3+
* Removed dev dependency on `bsdoc` to allow smooth installs on non-Mac
4+
OS
5+
16
### 0.19.0
27

38
* Added bindings to `ReadableStream`

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bs-webapi",
3-
"version": "0.19.0",
3+
"version": "0.19.1",
44
"description": "Reason + BuckleScript bindings to DOM",
55
"repository": {
66
"type": "git",

src/Webapi.re

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,17 @@ module Canvas = Webapi__Canvas;
66
module Dom = Webapi__Dom;
77
module File = Webapi__File;
88

9-
/** Re-export from [bs-fetch] for convenience.
9+
/** Re-export from [bs-fetch] for convenience. To use, you will also
10+
need to add the [bs-fetch] package as a dependency.
1011
1112
To get the [FormData] of an HTML form, use
1213
[Webapi.Dom.HtmlFormElement.data].
1314
1415
@since 0.18.0 */
1516
module FormData = Fetch.FormData;
1617

17-
/** Re-export from [bs-fetch] for convenience.
18+
/** Re-export from [bs-fetch] for convenience. See also
19+
{!module:FormData}.
1820
1921
@since 0.18.0 */
2022
module Iterator = FormData.Iterator;
@@ -23,6 +25,7 @@ module Performance = Webapi__Performance;
2325

2426
/** @since 0.19.0 */
2527
module ReadableStream = Webapi__ReadableStream;
28+
2629
module ResizeObserver = Webapi__ResizeObserver;
2730
module Url = Webapi__Url;
2831

0 commit comments

Comments
 (0)