Skip to content

Commit 6dc83cb

Browse files
committed
Release 1.9.0
1 parent a062583 commit 6dc83cb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@upsetjs/jupyter_widget",
3-
"version": "1.6.0",
3+
"version": "1.9.0",
44
"description": "UpSet.js is a re-implementation of UpSetR to create interactive set visualizations for more than three sets",
55
"license": "SEE LICENSE IN LICENSE.txt",
66
"author": {

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* The html widget manager assumes that this is the same as the npm package
1212
* version number.
1313
*/
14-
export const MODULE_VERSION = '1.6.0';
14+
export const MODULE_VERSION = '1.9.0';
1515

1616
/*
1717
* The current package name.

upsetjs_jupyter_widget/_frontend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
"""
1010

1111
MODULE_NAME = "@upsetjs/jupyter_widget"
12-
MODULE_VERSION = "^1.6.0"
12+
MODULE_VERSION = "^1.9.0"

upsetjs_jupyter_widget/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
UpSet.js Jupyter Widget
99
"""
1010

11-
version_info = (1, 6, 0) # pylint: disable=C0103
11+
version_info = (1, 9, 0) # pylint: disable=C0103
1212
__version__ = ".".join(map(str, version_info))

0 commit comments

Comments
 (0)