Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Jun 16, 2020
1 parent e6cfdf2 commit 8cbf1a0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@upsetjs/jupyter_widget",
"version": "1.0.0",
"version": "1.1.0",
"description": "UpSet.js is a re-implementation of UpSetR to create interactive set visualizations for more than three sets",
"license": "SEE LICENSE IN LICENSE.txt",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* The html widget manager assumes that this is the same as the npm package
* version number.
*/
export const MODULE_VERSION = '1.0.0';
export const MODULE_VERSION = '1.1.0';

/*
* The current package name.
Expand Down
2 changes: 1 addition & 1 deletion upsetjs_jupyter_widget/_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
"""

MODULE_NAME = "@upsetjs/jupyter_widget"
MODULE_VERSION = "^1.0.0"
MODULE_VERSION = "^1.1.0"
2 changes: 1 addition & 1 deletion upsetjs_jupyter_widget/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
UpSet.js Jupyter Widget
"""

version_info = (1, 0, 0) # pylint: disable=C0103
version_info = (1, 1, 0) # pylint: disable=C0103
__version__ = ".".join(map(str, version_info))

0 comments on commit 8cbf1a0

Please sign in to comment.