Skip to content

Commit b47193c

Browse files
committed
Merge branch release_0.9.2
2 parents 469b57d + 6f885e6 commit b47193c

File tree

3 files changed

+49
-2
lines changed

3 files changed

+49
-2
lines changed

CHANGELOG

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
2015-07-23 0.9.2:
2+
--------------------
3+
* Several nan-related fixes including the slow rendering of plots
4+
* Removed some unused dependencies
5+
* Fixes in our automated release process
6+
* Fixed the patchs vanishing on selection
7+
* More control over ticks and gridlines
8+
* MPL compatibility updated
9+
* Several examples updated
10+
* bugfixes:
11+
- #735 Inconsistent conversion of np.nan to json data in bokehjs
12+
- #1005 Nan in data source column causes problem with glyph interface
13+
- #1039 Bokeh server can display an empty document without any visible errors
14+
- #1075 [tests] Test failure if websocket client is not installed
15+
- #1139 Hover tool swaps sides at an off-center position
16+
- #1176 Session.store_document() fails in table_server example
17+
- #1264 Stock app fails to refresh after drop down is updated
18+
- #1381 Fill_color argument doesn't handle rgb(a) tuples properly
19+
- #2513 Fix release script failures
20+
- #2514 Bug: all patches vanish on selection
21+
- #2524 Setting a fixed font size value as a string is deprecated warnings
22+
- #2529 [docs] Internal server error on quickstart
23+
- #2582 [bokehjs] [regression] Slow plot rendering for 0.9.1
24+
- #2586 [bokehjs] Decimated glyph needs visuals set also
25+
- #2593 [docs] Fix typo in charts user guide
26+
- #2600 [bokehjs] Hotfix/fixed ticker
27+
* features:
28+
- #194 [widgets] Widget/controls integration
29+
- #2036 [bokehjs] Implementation of renderers in webgl
30+
- #2379 Get a warning about an invalid column name
31+
- #2496 Improve mouseover information in texas example
32+
- #2548 [bokehjs] Need more control over ticks and gridlines
33+
* tasks:
34+
- #2441 Warning when instantiating plot with no arguments
35+
- #2540 Add console warning when bokeh-plot fails
36+
- #2541 [docs] Breaking out inline plot examples in user guide into files
37+
- #2543 Mpl update
38+
- #2546 Clean up examples, use standard bokeh.io output
39+
- #2547 [docs] Fix typo in components deprecation message
40+
- #2554 [branches] Fix bug on ie (avoid using indices)
41+
- #2566 Server cleanup and refactor
42+
- #2571 [build] Enable test on dev branches
43+
- #2576 Remove mubs
44+
- #2577 [docs] Editing up to concepts
45+
- #2598 Serializing data with numpy optional
46+
- #2605 Hotfixes 0.9.2
47+
148
2015-07-03 0.9.1:
249
--------------------
350
* New callbacks options for hover, selection, and range updates

bokehjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bokehjs",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "Interactive, novel data visualization",
55
"keywords": [
66
"bokeh",

bokehjs/src/coffee/main.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Bokeh = {}
22
Bokeh.require = require
3-
Bokeh.version = '0.9.1'
3+
Bokeh.version = '0.9.2'
44

55
# binding the libs that bokeh uses so others can reference them
66
Bokeh._ = require("underscore")

0 commit comments

Comments
 (0)