Skip to content

Commit

Permalink
Bump to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Shawver committed Jul 11, 2018
1 parent a37c201 commit 050fc01
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qgrid",
"version": "1.1.0",
"version": "1.1.1",
"description": "An Interactive Grid for Sorting and Filtering DataFrames in Jupyter Notebook",
"author": "Quantopian Inc.",
"main": "src/index.js",
Expand Down
4 changes: 2 additions & 2 deletions js/src/qgrid.widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class QgridModel extends widgets.DOMWidgetModel {
_view_name : 'QgridView',
_model_module : 'qgrid',
_view_module : 'qgrid',
_model_module_version : '^1.1.0',
_view_module_version : '^1.1.0',
_model_module_version : '^1.1.1',
_view_module_version : '^1.1.1',
_df_json: '',
_columns: {}
});
Expand Down
2 changes: 1 addition & 1 deletion qgrid/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version_info = (1, 1, 0, 'final')
version_info = (1, 1, 1, 'final')

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

Expand Down
4 changes: 2 additions & 2 deletions qgrid/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,8 @@ class can be constructed directly but that's not recommended because
_model_name = Unicode('QgridModel').tag(sync=True)
_view_module = Unicode('qgrid').tag(sync=True)
_model_module = Unicode('qgrid').tag(sync=True)
_view_module_version = Unicode('1.1.0').tag(sync=True)
_model_module_version = Unicode('1.1.0').tag(sync=True)
_view_module_version = Unicode('1.1.1').tag(sync=True)
_model_module_version = Unicode('1.1.1').tag(sync=True)

_df = Instance(pd.DataFrame)
_df_json = Unicode('', sync=True)
Expand Down

0 comments on commit 050fc01

Please sign in to comment.