Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Apr 24, 2020
1 parent 42fe2b4 commit 24dabe1
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": "0.4.2",
"version": "0.5.0",
"description": "A Jupyter Widget Library around UpSet.js",
"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 @@ -6,7 +6,7 @@
* The html widget manager assumes that this is the same as the npm package
* version number.
*/
export const MODULE_VERSION = '0.4.2';
export const MODULE_VERSION = '0.5.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 @@ -5,4 +5,4 @@
"""

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

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

0 comments on commit 24dabe1

Please sign in to comment.