0.7.0 (Dec 2014)
================

This release focused on new features and capability, particularly around
user interface and experience:

* IPython widgets and animations without a Bokeh server
* Touch UI working for tools on mobile devices
* Vastly improved linked data table
* More new (and improving) bokeh.charts (high level charting interface)
* Color mappers on the python side
* Improved toolbar
* Many new tools: lasso, poly, and point selection, crosshair inspector

Migration Guide
---------------

Additionally, note that the "implicit" plotting interface of plotting.py
has been deprecated, and will be removed in Bokeh 0.8. In a nutshell,
code such as:

.. code-block:: python

    figure()
    hold()
    line()
    circle()
    show()

Should be replaced with the more explicit code:

.. code-block:: python

    p = figure()
    p.line()
    p.circle()
    show(p)
