Skip to content

Commit

Permalink
Add CHANGELOG for 1.9.0 (#492)
Browse files Browse the repository at this point in the history
* Add CHANGELOG for 1.9.0

* Small bug fix
  • Loading branch information
philippjfr authored Mar 13, 2021
1 parent c15ce34 commit 8adcfab
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 1 deletion.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
Version 1.9.0
=============

This GeoViews release primarily provides compatibility with the latest releases of Cartopy (0.18), Bokeh (2.3), HoloViews (1.14.x) and fixes a number of other issues.

Features:

- Add utility to download tile RGB ([#458](https://github.com/holoviz/geoviews/pull/458))

Compatibility:

- Compatibility with Bokeh 2.3 ([#487](https://github.com/holoviz/geoviews/pull/487))
- Compatibility for regridding with latest xesmf ([#488](https://github.com/holoviz/geoviews/pull/488))
- Compatibility with HoloViews 1.14.x for resampling operation and stream callback ([#488](https://github.com/holoviz/geoviews/pull/488))
- Compatibility with latest Cartopy 0.18 ([#488](https://github.com/holoviz/geoviews/pull/488))

Bug fixes:

- Allow using geopandas interface without using geometry column ([#464](https://github.com/holoviz/geoviews/pull/464))
- Fix Hover tooltip projection ([#490](https://github.com/holoviz/geoviews/pull/490))
- Use the set geometry column on Geopandas DataFrames ([#489](https://github.com/holoviz/geoviews/pull/489))
- Fix xesmf regridding file_pattern parameter ([#491](https://github.com/holoviz/geoviews/pull/491))


Version 1.8.2
=============

Minor bugfix release. Includes contributions from: @philippjfr

Bug fixes and minor improvements:

- Bump geoviews.js version and bokeh requirements ([#473](https://github.com/holoviz/geoviews/pull/473))
- Handle proj4.js API change in Hover formatter ([#472](https://github.com/holoviz/geoviews/pull/472))


Version 1.8.1
=============

Expand Down
35 changes: 35 additions & 0 deletions doc/releases.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
Releases
========

Version 1.9.0
-------------

This GeoViews release primarily provides compatibility with the latest releases of Cartopy (0.18), Bokeh (2.3), HoloViews (1.14.x) and fixes a number of other issues.

Features:

- Add utility to download tile RGB (`#458 <https://github.com/holoviz/geoviews/pull/458>`_)

Compatibility:

- Compatibility with Bokeh 2.3 (`#487 <https://github.com/holoviz/geoviews/pull/487>`_)
- Compatibility for regridding with latest xesmf (`#488 <https://github.com/holoviz/geoviews/pull/488>`_)
- Compatibility with HoloViews 1.14.x for resampling operation and stream callback (`#488 <https://github.com/holoviz/geoviews/pull/488>`_)
- Compatibility with latest Cartopy 0.18 (`#488 <https://github.com/holoviz/geoviews/pull/488>`_)

Bug fixes:

- Allow using geopandas interface without using geometry column (`#464 <https://github.com/holoviz/geoviews/pull/464>`_)
- Fix Hover tooltip projection (`#490 <https://github.com/holoviz/geoviews/pull/490>`_)
- Use the set geometry column on Geopandas DataFrames (`#489 <https://github.com/holoviz/geoviews/pull/489>`_)
- Fix xesmf regridding file_pattern parameter (`#491 <https://github.com/holoviz/geoviews/pull/491>`_)


Version 1.8.2
-------------

Minor bugfix release. Includes contributions from: @philippjfr

Bug fixes and minor improvements:

- Bump geoviews.js version and bokeh requirements (`#473 <https://github.com/holoviz/geoviews/pull/473>`_)
- Handle proj4.js API change in Hover formatter (`#472 <https://github.com/holoviz/geoviews/pull/472>`_)


Version 1.8.1
-------------

Expand Down
2 changes: 1 addition & 1 deletion examples/user_guide/Resampling_Grids.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@
"outputs": [],
"source": [
"from holoviews.operation.datashader import rasterize\n",
"rasterize(quadmeshes, precompute=True, aggregator=dsh.mean('Tair')) * gv.feature.coastline"
"rasterize(gv.project(quadmeshes), precompute=True, aggregator=dsh.mean('Tair')) * gv.feature.coastline"
]
},
{
Expand Down

0 comments on commit 8adcfab

Please sign in to comment.