Skip to content

Commit 1179bf6

Browse files
committed
Release 0.13.0
Signed-off-by: martinRenou <[email protected]>
1 parent 2694818 commit 1179bf6

File tree

6 files changed

+22
-12
lines changed

6 files changed

+22
-12
lines changed

CHANGELOG.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
1-
## UNRELEASED
1+
## v0.13.0
22

33
Improvements:
44

5-
* add custom map and wms projections #70
6-
* add changelog
7-
* add notebook to show how to use map projections
5+
* Add support for custom map and WMS projections #598
6+
* Add SearchControl feature #576
7+
* Add SearchControl documentation #584
8+
* Add window_url attribute to Map #587
9+
* Add Vector tile docs #590
10+
11+
Fixes:
12+
13+
* Fix missing dependency in documentation #581
14+
* Fix overwriting of colormap ranges for Choropleth #577
15+
* Prevent updating dictionary in GeoJSON style_callback #600
16+
817

918
## v0.12.6
1019

docs/source/api_reference/map.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ You can save the ``Map`` and all its layers and controls to an HTML page using t
5050
Attributes
5151
----------
5252

53-
======================== =============== ===
53+
======================== ===================== ===
5454
Attribute Default Value Doc
55-
======================== =============== ===
55+
======================== ===================== ===
5656
layers (default_layer) Tuple of layers
5757
controls () Tuple of controls
5858
center (0.0, 0.0) Initial geographic center of the map
@@ -79,7 +79,7 @@ inertia_max_speed 1500 Max speed of the
7979
zoom_control True
8080
attribution_control True
8181
zoom_animation_threshold 4
82-
======================== =============== ===
82+
======================== ===================== ===
8383

8484
Methods
8585
-------

environment.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ipyleaflet
22
channels:
33
- conda-forge
44
dependencies:
5-
- ipyleaflet=0.12.4
5+
- ipyleaflet=0.13.0
66
- scipy
77
- bqplot
88
- rasterio
@@ -14,3 +14,4 @@ dependencies:
1414
- branca
1515
- geopandas
1616
- netcdf4
17+
- xarray

ipyleaflet/_version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Distributed under the terms of the Modified BSD License.
33
#
44

5-
version_info = (0, 12, 6)
5+
version_info = (0, 13, 0)
66

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

9-
EXTENSION_VERSION = '^0.12.6'
9+
EXTENSION_VERSION = '^0.13.0'

js/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyter-leaflet",
3-
"version": "0.12.6",
3+
"version": "0.13.0",
44
"description": "jupyter - leaflet bridge",
55
"keywords": [
66
"jupyter",

0 commit comments

Comments
 (0)