This release focused on new features and capability, particularly around user interface and experience:
An accompanying blog announement with more details can be seen at:
http://continuum.io/blog/bokeh-0.7
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:
figure()
hold()
line()
circle()
show()
Should be replaced with the more explicit code:
p = figure()
p.line()
p.circle()
show(p)