diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c4301c5..d6291eca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ # Version 4.0.0 Prereleases +## 4.0.0-beta.7 (Nov 5, 2018) + +- New interruption mode: UPDATE (#631) +- API audit round 2 (#652) +- Set up flow (#651) + ## 4.0.0-beta.6 (Nov 2, 2018) - Don't override visibility style when visible is true (#650) diff --git a/README.md b/README.md index 26a2f0a1..71424439 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,11 @@ React Components Suite for Mapb In addition to exposing MapboxGL functionality to React apps, react-map-gl also integrates seamlessly with [deck.gl](https://uber.github.io/deck.gl). ### Before You Begin -This library provides convenient wrappers around initializing and (to some degree) tracking the state of a Mapbox WebGL map. However, because most of the functionality of Mapbox's JS API depends on the use of HTML5 canvases and WebGL, which React is not built to manipulate, the React component does not mirror all the functionality of Mapbox GL JS's Map class. You may access the native Mapbox API exposed by the `getMap()` function in this library. However, proceed with caution as calling the native APIs may break the connection between the React layer props and the underlying map state. +This library provides convenient wrappers around initializing and (to some degree) tracking the state of a Mapbox WebGL map. Because most of the functionality of Mapbox's JS API depends on the use of HTML5 canvases and WebGL, which React is not built to manipulate, the React component does not mirror all the functionality of Mapbox GL JS's Map class. You may access the native Mapbox API exposed by the `getMap()` function in this library. However, proceed with caution as calling the native APIs may break the connection between the React layer props and the underlying map state. ### Installation -Using `react-map-gl` requires `node >= v4` and `react >= 15.4`. +Using `react-map-gl` requires `react >= 16.3`. ```sh npm install --save react-map-gl diff --git a/package.json b/package.json index 68b919fc..3d3d45b4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-map-gl", "description": "A React wrapper for MapboxGL-js and overlay API.", - "version": "4.0.0-beta.6", + "version": "4.0.0-beta.7", "keywords": [ "mapbox", "mapbox-gl", @@ -24,7 +24,8 @@ }, "files": [ "src", - "dist" + "dist", + "README.md" ], "scripts": { "start": "(cd examples/main && (if [ ! -d 'node_modules' ]; then npm i; fi) && npm run start-local)",