Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.8.4 hotfix release #1884

Merged
merged 4 commits into from
Sep 13, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
Version 1.8.4
=============

This bugfix release includes a number of critical fixes for compatiblity
with bokeh 0.12.9 along with various other bug fixes. Many thanks to our
users for various detailed bug reports, feedback and contributions.

Fixes:

- Fixes to register BoundsXY stream.
([\#1826](https://github.com/ioam/holoviews/pull/1826))
- Fix for Bounds streams on bokeh server.
([\#1883](https://github.com/ioam/holoviews/pull/1883))
- Compatibility with matplotlib 2.1
([\#1842](https://github.com/ioam/holoviews/pull/1842))
- Fixed bug in scrubber widget and support for scrubbing discrete
DynamicMaps ([\#1832](https://github.com/ioam/holoviews/pull/1832))
- Various fixes for compatibility with bokeh 0.12.9
([\#1849](https://github.com/ioam/holoviews/pull/1849),
[\#1866](https://github.com/ioam/holoviews/pull/1886))
- Fixes for setting QuadMesh ranges.
([\#1876](https://github.com/ioam/holoviews/pull/1876))
- Fixes for inverting Image/RGB/Raster axes in bokeh.
([\#1872](https://github.com/ioam/holoviews/pull/1872))


Version 1.8.3
=============

Expand Down
2 changes: 1 addition & 1 deletion holoviews/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import param

__version__ = param.Version(release=(1,8,2), fpath=__file__,
__version__ = param.Version(release=(1,8,4), fpath=__file__,
commit="$Format:%h$", reponame='holoviews')

from .core import archive, config # noqa (API import)
Expand Down
1 change: 1 addition & 0 deletions holoviews/operation/datashader.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@ def _process(self, element, key=None):
xdensity=xd, ydensity=yd)



class shade(Operation):
"""
shade applies a normalization function followed by colormapping to
Expand Down
4 changes: 2 additions & 2 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: holoviews
version: 1.8.2
version: 1.8.4

source:
path: .
Expand All @@ -16,7 +16,7 @@ requirements:
- param >=1.5.1,<2.0
- numpy
- matplotlib
- bokeh >=0.12.6
- bokeh >=0.12.6,<=0.12.9
- jupyter
- notebook
- ipython
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

setup_args.update(dict(
name='holoviews',
version="1.8.2",
version="1.8.4",
install_requires = install_requires,
extras_require = extras_require,
description='Stop plotting your data - annotate your data and let it visualize itself.',
Expand Down