Skip to content

Commit 3a973a1

Browse files
authored
Merge pull request #127 from DZakh-forks/v0.9.0
2 parents 642f9d3 + 02256fe commit 3a973a1

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
1212
## main
1313

14+
## 0.9.0
15+
1416
#### :boom: Breaking Change
1517

1618
- Corrected return type of `selectionStart` and `selectionEnd` for `input` and `textarea` elements. https://github.com/TheSpyder/rescript-webapi/pull/124

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Bindings to the DOM and other browser-specific web APIs.
66

77
## Stability
88

9-
This project is in the process of being forked; until the library reaches 1.0, expect major breaking changes to the API. See the [1.0 project](https://github.com/tinymce/rescript-webapi/projects/1) for the current progress towards that goal.
9+
This project is in the process of being forked; until the library reaches 1.0, expect major breaking changes to the API. See the [1.0 project](https://github.com/TheSpyder/rescript-webapi/projects/1) for the current progress towards that goal.
1010

1111
## Installation
1212

@@ -26,7 +26,7 @@ Then add `rescript-webapi` to `bs-dependencies` in your `bsconfig.json`. A minim
2626

2727
## Usage
2828

29-
See the [examples folder](https://github.com/tinymce/rescript-webapi/tree/main/examples).
29+
See the [examples folder](https://github.com/TheSpyder/rescript-webapi/tree/main/examples).
3030

3131
Please only use the modules exposed through the toplevel module `Webapi`, for example `Webapi.Dom.Element`. In particular, don't use the 'flat' modules like `Webapi__Dom__Element` as these are considered private and are not guaranteed to be backwards-compatible.
3232

package.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
{
22
"name": "rescript-webapi",
3-
"version": "0.8.0",
4-
"description": "Reason / ReScript bindings to DOM",
3+
"version": "0.9.0",
4+
"description": "ReScript bindings to the DOM and other Web APIs",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/tinymce/rescript-webapi.git"
7+
"url": "https://github.com/TheSpyder/rescript-webapi.git"
88
},
9-
"homepage": "https://github.com/tinymce/rescript-webapi#readme",
9+
"homepage": "https://github.com/TheSpyder/rescript-webapi#readme",
1010
"keywords": [
11-
"reason",
12-
"bucklescript",
1311
"rescript",
12+
"bindings",
1413
"web",
15-
"dom"
14+
"dom",
15+
"browser",
16+
"reason",
17+
"bucklescript"
1618
],
1719
"scripts": {
1820
"build": "rescript",

0 commit comments

Comments
 (0)