Skip to content

Commit

Permalink
v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulLeCam committed Oct 7, 2015
1 parent 8751e71 commit 7c1cdb6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## v0.8.0 (07/10/15)

Changes from v0.7.0:

- Updated React to v0.14.0.
- Added ReactDOM v0.14.0 to peer dependencies.
- `Popup` now renders its contents using `ReactDOM.render()` and therefore supports dynamic children.
- `Map` now supports dynamic `bounds` and `maxBounds` properties ([#72](https://github.com/PaulLeCam/react-leaflet/pull/72)).
- Added `LayerGroup` component ([#58](https://github.com/PaulLeCam/react-leaflet/pull/58)).

## v0.8.0-rc.3 (29/09/15)

- Added `LayerGroup` component ([#58](https://github.com/PaulLeCam/react-leaflet/pull/58)).
Expand Down
5 changes: 3 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-leaflet",
"version": "0.6.2",
"version": "0.8.0",
"homepage": "https://github.com/PaulLeCam/react-leaflet",
"authors": [
"Paul Le Cam <[email protected]>"
Expand All @@ -10,7 +10,8 @@
"dependencies": {
"lodash": "~3.0.0",
"leaflet": "~0.7.0",
"react": "~0.13.0"
"react": "~0.14.0",
"react-dom": "~0.14.0"
},
"keywords": [
"react-component",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-leaflet",
"version": "0.8.0-rc.3",
"version": "0.8.0",
"description": "React components for Leaflet maps",
"main": "lib/index.js",
"scripts": {
Expand Down Expand Up @@ -41,8 +41,8 @@
},
"peerDependencies": {
"leaflet": "^0.7.0",
"react": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1"
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel": "^5.8.23",
Expand All @@ -58,7 +58,7 @@
"gulp-load-plugins": "^0.10.0",
"gulp-util": "^3.0.6",
"gulp-webserver": "^0.9.1",
"jest-cli": "^0.5.8",
"jest-cli": "^0.5.10",
"leaflet": "^0.7.5",
"onchange": "^2.0.0",
"react": "^0.14.0-rc1",
Expand Down

0 comments on commit 7c1cdb6

Please sign in to comment.