Skip to content

Commit 48f3cb6

Browse files
committed
Release 0.16.0
1 parent 98d570e commit 48f3cb6

File tree

5 files changed

+55
-7
lines changed

5 files changed

+55
-7
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
## v0.16.0
2+
3+
## What's Changed
4+
5+
### New features
6+
7+
* Add bounds attribute to TileLayer by @davidbrochart in https://github.com/jupyter-widgets/ipyleaflet/pull/907
8+
* Implemented open_popup and close_popup methods by @PROgram52bc in https://github.com/jupyter-widgets/ipyleaflet/pull/914
9+
10+
### Maintainance
11+
12+
* Stop layer loading spinner when layer is removed by @clydebw in https://github.com/jupyter-widgets/ipyleaflet/pull/903
13+
* Added backward compatibility for dict basemaps by @sackh in https://github.com/jupyter-widgets/ipyleaflet/pull/901
14+
* Pin `openssl=1.1.1l` in CI script by @trungleduc in https://github.com/jupyter-widgets/ipyleaflet/pull/906
15+
* Test `ipyleaflet` widgets with `galata` by @trungleduc in https://github.com/jupyter-widgets/ipyleaflet/pull/905
16+
* Clean up UI tests by @davidbrochart in https://github.com/jupyter-widgets/ipyleaflet/pull/908
17+
* Remove map callbacks when DrawControl removed from map by @clydebw in https://github.com/jupyter-widgets/ipyleaflet/pull/916
18+
* Add Galata bot by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/938
19+
* Fix CI by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/946
20+
* Fix Galata screenshot update CI job by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/945
21+
* Missing jupyter-packaging on CI by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/948
22+
* Fix ui-tests port by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/949
23+
* UI-tests: Update scripts to match bot implementation by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/950
24+
* Remove OpenSSL pinning by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/952
25+
* Update Galata screenshots by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/947
26+
* Update build script by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/954
27+
* Fix watch script in ipyleaflet by @HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/963
28+
29+
### Docs:
30+
31+
* Fix docs table by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/898
32+
* Update basemaps by @MackyDIARRA in https://github.com/jupyter-widgets/ipyleaflet/pull/924
33+
* Updates on ipyleaflet documentation by @HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/953
34+
* Change the theme to pydata-sphynx-theme by @HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/955
35+
* Update installation instructions by @martinRenou in https://github.com/jupyter-widgets/ipyleaflet/pull/956
36+
* Add to ipyleaflet's documentation some missing attributes sections with autodoc. by @HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/957
37+
* Add jupyterlite-sphinx by @HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/958
38+
* Fix formatting issues in the doc for attributes and methods sections using autodoc by @HaudinFlorence in https://github.com/jupyter-widgets/ipyleaflet/pull/959
39+
* radiation notebook updated with SearchControl object adding by @MackyDIARRA in https://github.com/jupyter-widgets/ipyleaflet/pull/899
40+
41+
## New Contributors
42+
* @clydebw made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/903
43+
* @trungleduc made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/906
44+
* @PROgram52bc made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/914
45+
* @HaudinFlorence made their first contribution in https://github.com/jupyter-widgets/ipyleaflet/pull/953
46+
47+
**Full Changelog**: https://github.com/jupyter-widgets/ipyleaflet/compare/0.15.0...master
48+
149
## v0.15.0
250

351
Improvements:

environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: ipyleaflet
33
channels:
44
- conda-forge
55
dependencies:
6-
- ipyleaflet=0.15.0
6+
- ipyleaflet=0.16.0
77
- scipy
88
- bqplot
99
- rasterio
@@ -16,4 +16,4 @@ dependencies:
1616
- geopandas
1717
- netcdf4
1818
- xarray
19-
- ipyflex
19+
- ipyflex

ipyleaflet/_version.py

Lines changed: 2 additions & 2 deletions
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, 15, 0)
5+
version_info = (0, 16, 0)
66

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

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

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@
7272
'Topic :: Multimedia :: Graphics',
7373
'License :: OSI Approved :: MIT License',
7474
'Programming Language :: Python :: 3',
75-
'Programming Language :: Python :: 3.5',
7675
'Programming Language :: Python :: 3.6',
7776
'Programming Language :: Python :: 3.7',
7877
'Programming Language :: Python :: 3.8',
79-
'Programming Language :: Python :: 3.9'
78+
'Programming Language :: Python :: 3.9',
79+
'Programming Language :: Python :: 3.10'
8080
],
8181
)
8282

0 commit comments

Comments
 (0)