Skip to content

Commit

Permalink
Release 0.13.0
Browse files Browse the repository at this point in the history
Signed-off-by: martinRenou <[email protected]>
  • Loading branch information
martinRenou committed May 25, 2020
1 parent 2694818 commit 1179bf6
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 deletions.
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
## UNRELEASED
## v0.13.0

Improvements:

* add custom map and wms projections #70
* add changelog
* add notebook to show how to use map projections
* Add support for custom map and WMS projections #598
* Add SearchControl feature #576
* Add SearchControl documentation #584
* Add window_url attribute to Map #587
* Add Vector tile docs #590

Fixes:

* Fix missing dependency in documentation #581
* Fix overwriting of colormap ranges for Choropleth #577
* Prevent updating dictionary in GeoJSON style_callback #600


## v0.12.6

Expand Down
6 changes: 3 additions & 3 deletions docs/source/api_reference/map.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ You can save the ``Map`` and all its layers and controls to an HTML page using t
Attributes
----------

======================== =============== ===
======================== ===================== ===
Attribute Default Value Doc
======================== =============== ===
======================== ===================== ===
layers (default_layer) Tuple of layers
controls () Tuple of controls
center (0.0, 0.0) Initial geographic center of the map
Expand All @@ -79,7 +79,7 @@ inertia_max_speed 1500 Max speed of the
zoom_control True
attribution_control True
zoom_animation_threshold 4
======================== =============== ===
======================== ===================== ===

Methods
-------
Expand Down
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ipyleaflet
channels:
- conda-forge
dependencies:
- ipyleaflet=0.12.4
- ipyleaflet=0.13.0
- scipy
- bqplot
- rasterio
Expand All @@ -14,3 +14,4 @@ dependencies:
- branca
- geopandas
- netcdf4
- xarray
4 changes: 2 additions & 2 deletions ipyleaflet/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Distributed under the terms of the Modified BSD License.
#

version_info = (0, 12, 6)
version_info = (0, 13, 0)

__version__ = '%s.%s.%s' % (version_info[0], version_info[1], version_info[2])

EXTENSION_VERSION = '^0.12.6'
EXTENSION_VERSION = '^0.13.0'
2 changes: 1 addition & 1 deletion js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyter-leaflet",
"version": "0.12.6",
"version": "0.13.0",
"description": "jupyter - leaflet bridge",
"keywords": [
"jupyter",
Expand Down

0 comments on commit 1179bf6

Please sign in to comment.