Skip to content

Commit

Permalink
Release 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Dec 6, 2021
1 parent 410f221 commit caaddb8
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## v0.15.0

Improvements:

* Add `prefer_canvas` option to the `Map` class
* Use `xyzservices` for base maps
* Add Colab support by default
* Support any layer type in `MarkerCluster`
* Add `location_found` event to the `SearchControl`

## v0.14.0

Improvements:
Expand Down
4 changes: 1 addition & 3 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ name: ipyleaflet
channels:
- conda-forge
dependencies:
- nodejs=14.11
- ipyleaflet=0.14.0
- jupyterlab=3
- ipyleaflet=0.15.0
- scipy
- bqplot
- rasterio
Expand Down
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, 14, 0)
version_info = (0, 15, 0)

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

EXTENSION_VERSION = '^0.14.0'
EXTENSION_VERSION = '^0.15.0'
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.14.0",
"version": "0.15.0",
"description": "jupyter - leaflet bridge",
"keywords": [
"jupyter",
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@
'Intended Audience :: Science/Research',
'Topic :: Multimedia :: Graphics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)

Expand Down

0 comments on commit caaddb8

Please sign in to comment.