Skip to content

Commit caaddb8

Browse files
committed
Release 0.15.0
1 parent 410f221 commit caaddb8

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## v0.15.0
2+
3+
Improvements:
4+
5+
* Add `prefer_canvas` option to the `Map` class
6+
* Use `xyzservices` for base maps
7+
* Add Colab support by default
8+
* Support any layer type in `MarkerCluster`
9+
* Add `location_found` event to the `SearchControl`
10+
111
## v0.14.0
212

313
Improvements:

environment.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ name: ipyleaflet
22
channels:
33
- conda-forge
44
dependencies:
5-
- nodejs=14.11
6-
- ipyleaflet=0.14.0
7-
- jupyterlab=3
5+
- ipyleaflet=0.15.0
86
- scipy
97
- bqplot
108
- rasterio

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, 14, 0)
5+
version_info = (0, 15, 0)
66

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

9-
EXTENSION_VERSION = '^0.14.0'
9+
EXTENSION_VERSION = '^0.15.0'

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.14.0",
3+
"version": "0.15.0",
44
"description": "jupyter - leaflet bridge",
55
"keywords": [
66
"jupyter",

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@
7171
'Intended Audience :: Science/Research',
7272
'Topic :: Multimedia :: Graphics',
7373
'License :: OSI Approved :: MIT License',
74-
'Programming Language :: Python :: 2',
75-
'Programming Language :: Python :: 2.7',
7674
'Programming Language :: Python :: 3',
77-
'Programming Language :: Python :: 3.3',
78-
'Programming Language :: Python :: 3.4',
7975
'Programming Language :: Python :: 3.5',
76+
'Programming Language :: Python :: 3.6',
77+
'Programming Language :: Python :: 3.7',
78+
'Programming Language :: Python :: 3.8',
79+
'Programming Language :: Python :: 3.9'
8080
],
8181
)
8282

0 commit comments

Comments
 (0)