Skip to content

Commit 60c7df3

Browse files
author
Tim Shawver
committed
Bump to version 1.0.5
1 parent 138acd3 commit 60c7df3

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qgrid",
3-
"version": "1.0.3",
3+
"version": "1.0.5",
44
"description": "An Interactive Grid for Sorting and Filtering DataFrames in Jupyter Notebook",
55
"author": "Quantopian Inc.",
66
"main": "src/index.js",

js/src/qgrid.widget.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class QgridModel extends widgets.DOMWidgetModel {
3636
_view_name : 'QgridView',
3737
_model_module : 'qgrid',
3838
_view_module : 'qgrid',
39-
_model_module_version : '^1.0.3',
40-
_view_module_version : '^1.0.3',
39+
_model_module_version : '^1.0.5',
40+
_view_module_version : '^1.0.5',
4141
_df_json: '',
4242
_columns: {}
4343
});

qgrid/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version_info = (1, 0, 3, 'final')
1+
version_info = (1, 0, 5, 'final')
22

33
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
44

qgrid/grid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,8 +464,8 @@ class QgridWidget(widgets.DOMWidget):
464464
_model_name = Unicode('QgridModel').tag(sync=True)
465465
_view_module = Unicode('qgrid').tag(sync=True)
466466
_model_module = Unicode('qgrid').tag(sync=True)
467-
_view_module_version = Unicode('1.0.3').tag(sync=True)
468-
_model_module_version = Unicode('1.0.3').tag(sync=True)
467+
_view_module_version = Unicode('1.0.5').tag(sync=True)
468+
_model_module_version = Unicode('1.0.5').tag(sync=True)
469469

470470
_df = Instance(pd.DataFrame)
471471
_df_json = Unicode('', sync=True)

0 commit comments

Comments
 (0)