Blog post about 1.1.0 (#5581)

* Bump version to 1.1.0

* Blog post about 1.1.0

* Fix description

* Fix punctuation

* Update integrity hashes

* Set release date for 1.1.0

* Add reference for 1.1.0

* Point reference.html to docs for 1.1.0
This commit is contained in:
Per Liedman 2017-06-27 13:39:25 +02:00 committed by GitHub
parent 3fae3befd3
commit ca540211e3
6 changed files with 23669 additions and 7 deletions

View File

@ -7,7 +7,7 @@ Leaflet Changelog
An in-progress version being developed on the `master` branch.
## 1.1.0 (relase date TBD)
## 1.1.0 (2017-06-27)
### API changes

View File

@ -5,7 +5,7 @@ markdown: kramdown
kramdown:
entity_output: as_input
latest_leaflet_version: 1.0.3
latest_leaflet_version: 1.1.0
gems:
- jekyll-redirect-from
@ -13,7 +13,7 @@ gems:
# Integrity hashes for both leaflet.js and leaflet-src.js
# These will be shown in the downloads page
# See https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity
integrity_hash_css: "sha512-07I2e+7D8p6he1SIM+1twR5TIrhUQn9+I6yjqD53JQjFiMf8EtC93ty0/5vJTZGF8aAocvHYNEDJajGdNx1IsQ=="
integrity_hash_source: "sha512-WXoSHqw/t26DszhdMhOXOkI7qCiv5QWXhH9R7CgvgZMHz1ImlkVQ3uNsiQKu5wwbbxtPzFXd1hK4tzno2VqhpA=="
integrity_hash_uglified: "sha512-A7vV8IFfih/D732iSSKi20u/ooOfj/AGehOKq0f4vLT1Zr2Y+RX7C+w8A1gaSasGtRUZpF/NZgzSAu4/Gc41Lg=="
integrity_hash_css: "sha512-wcw6ts8Anuw10Mzh9Ytw4pylW8+NAD4ch3lqm9lzAsTxg0GFeJgoAtxuCLREZSC5lUXdVyo/7yfsqFjQ4S+aKw=="
integrity_hash_source: "sha512-sIPSXEX730B6EcdQyVPmIGp7f7ZrxIuECnkwYtPpEltG6NqOVtmBNoxHkMamNsAOHLMnDFaUoJYA4PWtzNZDuA=="
integrity_hash_uglified: "sha512-mNqn2Wg7tSToJhvHcqfzLMU6J4mkOImSPTxVZAdo+lcPlk+GhZmYgACEe0x35K7YzW1zJ7XyJV/TT1MrdXvMcA=="

View File

@ -0,0 +1,18 @@
---
layout: post
title: Announcing Leaflet 1.1.0
description: a new version, based on ES6 modules, has been released
author: Per Liedman
authorsite: http://www.liedman.net
---
We have released Leaflet version 1.1.0, the first version built with [ES6 modules](https://babeljs.io/learn-es2015/#ecmascript-2015-features-modules) - a big step forward ensuring Leaflet is up to date with how modern JavaScript is written. For users upgrading to this release, this change should not make a difference, while it offers the possibility to import individual parts of Leaflet individually if your app is built with ES6. As a consequence, 1.1.0 is also the first version built without Leaflet's now deprecated custom build system, in favor of using [Rollup](https://rollupjs.org/).
Also new in this release is the new `L.VideoOverlay` class, allowing [overlaying video on your maps](http://leafletjs.com/examples/video-overlay/).
We also managed to fix over 30 bugs with the help of about 20 different contributors: see the full [changelog](https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md) for details.
To get the new release, update your dependencies in your favorite package manager, or check the [downloads page](http://leafletjs.com/download.html).
Cheers,<br>
The Leaflet team.

23644
docs/reference-1.1.0.html Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,3 @@
---
redirect_to: reference-1.0.3.html
redirect_to: reference-1.1.0.html
---

View File

@ -1,6 +1,6 @@
{
"name": "leaflet",
"version": "1.0.3",
"version": "1.1.0",
"description": "JavaScript library for mobile-friendly interactive maps",
"devDependencies": {
"eslint": "^3.5.0 <3.6.0",