Skip to content

Commit eceb588

Browse files
committed
Release 0.20.0
1 parent 9ad1fbf commit eceb588

File tree

5 files changed

+40
-5
lines changed

5 files changed

+40
-5
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
## v0.20.0
2+
3+
## New features
4+
5+
* Add event coordinates to GeoJSON message by @lopezvoliver in https://github.com/jupyter-widgets/ipyleaflet/pull/1228
6+
* Default zoom level to 4 instead of 12 so that default Map() don't onl… by @SylvainCorlay in https://github.com/jupyter-widgets/ipyleaflet/pull/1252
7+
* Preserve `{r}` in basemap urls by @letmaik in https://github.com/jupyter-widgets/ipyleaflet/pull/1241
8+
* Fix geoman controls option update + snapping option by @mangecoeur in https://github.com/jupyter-widgets/ipyleaflet/pull/1247
9+
* Add on_click to GeomanDrawControl by @arjxn-py in https://github.com/jupyter-widgets/ipyleaflet/pull/1261
10+
11+
## Bug fixes
12+
13+
* Add scrollWheelZoom.enable() and disable() by @lopezvoliver in https://github.com/jupyter-widgets/ipyleaflet/pull/1225
14+
* Make Leaflet-Geoman ignore created layers by default by @riccardoporreca in https://github.com/jupyter-widgets/ipyleaflet/pull/1220
15+
* Make cluster "bubbles" ignorable by Geoman by @lopezvoliver in https://github.com/jupyter-widgets/ipyleaflet/pull/1249
16+
* Update deprecated subdomains for tile.openstreetmap.org by @arjxn-py in https://github.com/jupyter-widgets/ipyleaflet/pull/1257
17+
* Add workaround for MeasureControl map panning bug by @gjmooney in https://github.com/jupyter-widgets/ipyleaflet/pull/1171
18+
* geojson layers pmIgnore by @lopezvoliver in https://github.com/jupyter-widgets/ipyleaflet/pull/1251
19+
20+
## Maintenance
21+
22+
* Fix CI by @arjxn-py in https://github.com/jupyter-widgets/ipyleaflet/pull/1254
23+
* CI: check comment author association instead of issue author by @arjxn-py in https://github.com/jupyter-widgets/ipyleaflet/pull/1255
24+
* Update Binder link in the Usage section of the docs by @arjxn-py in https://github.com/jupyter-widgets/ipyleaflet/pull/1256
25+
* fix `examples/KML.ipynb` by @arjxn-py in https://github.com/jupyter-widgets/ipyleaflet/pull/1258
26+
* Update flaky snapshots by @arjxn-py in https://github.com/jupyter-widgets/ipyleaflet/pull/1259
27+
* Update lite deployment in docs by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/1262
28+
29+
## New Contributors
30+
* @riccardoporreca made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/1220
31+
* @arjxn-py made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/1254
32+
* @letmaik made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/1241
33+
34+
**Full Changelog**: https://github.com/jupyter-widgets/ipyleaflet/compare/0.19.2...0.20.0
35+
136
## v0.19.2
237

338
* fix(docs): GeomanDrawControl was not included in docs navigation by @iisakkirotko in https://github.com/jupyter-widgets/ipyleaflet/pull/1197

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: ipyleaflet
33
channels:
44
- conda-forge
55
dependencies:
6-
- ipyleaflet=0.19.2
6+
- ipyleaflet
77
- scipy
88
- bqplot
99
- rasterio
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) Jupyter Development Team.
22
# Distributed under the terms of the Modified BSD License.
33

4-
EXTENSION_VERSION = "^0.19"
5-
__version__ = "0.19.2"
4+
EXTENSION_VERSION = "^0.20"
5+
__version__ = "0.20.0"

python/ipyleaflet/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = [
3232
"xyzservices>=2021.8.1",
3333
"branca>=0.5.0",
3434
# Is there no automatic way to compute this with hatch??
35-
"jupyter_leaflet>=0.19,<0.20",
35+
"jupyter_leaflet>=0.20,<0.21",
3636
]
3737
dynamic = [
3838
"version",

python/jupyter_leaflet/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyter-leaflet",
3-
"version": "0.19.2",
3+
"version": "0.20.0",
44
"description": "jupyter - leaflet bridge",
55
"keywords": [
66
"jupyter",

0 commit comments

Comments
 (0)