Skip to content

Commit

Permalink
Versioning 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zhihanyue committed Oct 26, 2024
1 parent f0eca44 commit e2d6c97
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": "qgridnext",
"version": "2.0.1",
"version": "2.0.2",
"description": "An Interactive Grid for Sorting and Filtering DataFrames in Jupyter",
"author": "QgridNext",
"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 @@ -30,8 +30,8 @@ class QgridModel extends widgets.DOMWidgetModel {
_view_name : 'QgridView',
_model_module : 'qgrid',
_view_module : 'qgrid',
_model_module_version : '^2.0.1',
_view_module_version : '^2.0.1',
_model_module_version : '^2.0.2',
_view_module_version : '^2.0.2',
_df_json: '',
_columns: {}
});
Expand Down
2 changes: 1 addition & 1 deletion qgridnext/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.1"
__version__ = "2.0.2"
4 changes: 2 additions & 2 deletions qgridnext/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,8 +554,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('^2.0.1').tag(sync=True)
_model_module_version = Unicode('^2.0.1').tag(sync=True)
_view_module_version = Unicode('^2.0.2').tag(sync=True)
_model_module_version = Unicode('^2.0.2').tag(sync=True)

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

0 comments on commit e2d6c97

Please sign in to comment.