Bump version; changelog (#4786)

This commit is contained in:
Yohan Boniface 2016-08-05 11:25:56 +02:00 committed by Vladimir Agafonkin
parent 51f9f56869
commit 833340752c
3 changed files with 20 additions and 2 deletions

View File

@ -8,6 +8,24 @@ Leaflet Changelog
An in-progress version being developed on the `master` branch.
## 1.0-rc3 (August 5, 2016)
### API changes
- `L.Tooltip` `offset` option now defaults to `[0, 0]` (by [@yohanboniface](https://github.com/yohanboniface)) [#4773](https://github.com/Leaflet/Leaflet/pull/4773)
- Event listeners are now always called in the order they have been registered, while until rc2 listeners with a context were all called before listeners without context (even if registered later), and the listeners with context were called in an unpredictable order (by [@yohanboniface](https://github.com/yohanboniface)) [#4769](https://github.com/Leaflet/Leaflet/pull/4769)
### Improvements
- Added `oldLatLng` in `L.Marker` `drag` event (by [@snkashis](https://github.com/snkashis)) [#4752](https://github.com/Leaflet/Leaflet/pull/4752)
### Bug fixes
- Fixed regression where event listeners where not always fired in the order of registration (by [@yohanboniface](https://github.com/yohanboniface)) [#4769](https://github.com/Leaflet/Leaflet/pull/4769)
- Fixed `L.Tooltip` zoom animation (by [@yohanboniface](https://github.com/yohanboniface)) [#4744](https://github.com/Leaflet/Leaflet/pull/4744)
- Fixed `layer.bindTooltip` crashing when called before adding the layer to the map (by [@yohanboniface](https://github.com/yohanboniface)) [#4779](https://github.com/Leaflet/Leaflet/pull/4779)
- Fixed regression in `L.Popup` autopaning (by [@yohanboniface](https://github.com/yohanboniface)) [#4768](https://github.com/Leaflet/Leaflet/pull/4768)
- Fixed non permanent `L.Tooltip` not being closed on touch when touching the map (by [@yohanboniface](https://github.com/yohanboniface)) [#4767](https://github.com/Leaflet/Leaflet/pull/4767)
- Fixed `popupopen` and `popupclose` not being fired when clicking on path with an open popup (by [@yohanboniface](https://github.com/yohanboniface)) [#4788](https://github.com/Leaflet/Leaflet/pull/4788)
## 1.0-rc2 (July 18, 2016)
### API changes

View File

@ -1,6 +1,6 @@
{
"name": "leaflet",
"version": "1.0.0-rc.2",
"version": "1.0.0-rc.3",
"description": "JavaScript library for mobile-friendly interactive maps",
"devDependencies": {
"eslint": "^2.11.1",

View File

@ -1,6 +1,6 @@
var L = {
version: '1.0.0-rc.2'
version: '1.0.0-rc.3'
};
function expose() {