Skip to content

Commit

Permalink
Bump to v0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
flekschas committed Oct 12, 2022
1 parent 1a44cc5 commit 2882acb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyter-scatter",
"version": "0.7.1",
"version": "0.7.2",
"description": "A scatter plot extension for Jupyter Notebook and Lab",
"author": "Fritz Lekschas",
"main": "src/index.js",
Expand All @@ -25,18 +25,18 @@
"dist/*.js"
],
"scripts": {
"clean": "rimraf dist/ && rimraf ../jscatter/labextension/ && rimraf ../jscatter/nbextension",
"prepare": "npm run clean && npm run lint && npm run build:prod",
"build": "webpack --mode=development && npm run build:labextension:dev",
"build:prod": "webpack --mode=production && npm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"lint": "eslint src embed.js extension.js get-version-info.js index.js labplugin.js",
"watch": "webpack --watch --mode=development",
"test": "npm run lint"
"ssl": "export NODE_OPTIONS=--openssl-legacy-provider",
"clean": "npm run ssl && rimraf dist/ && rimraf ../jscatter/labextension/ && rimraf ../jscatter/nbextension",
"prepare": "npm run ssl && npm run clean && npm run lint && npm run build:prod",
"build": "npm run ssl && webpack --mode=development && npm run build:labextension:dev",
"build:prod": "npm run ssl && webpack --mode=production && npm run build:labextension",
"build:labextension": "npm run ssl && jupyter labextension build .",
"build:labextension:dev": "npm run ssl && jupyter labextension build --development True .",
"lint": "npm run ssl && eslint src embed.js extension.js get-version-info.js index.js labplugin.js",
"watch": "npm run ssl && webpack --watch --mode=development",
"test": "npm run ssl && npm run lint"
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4",
"camera-2d-simple": "~2.2.1",
"d3-axis": "~3.0.0",
"d3-scale": "~4.0.2",
Expand All @@ -49,7 +49,7 @@
"regl-scatterplot": "~1.3.0"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.8",
"@jupyterlab/builder": "^3.4.8",
"css-loader": "^3.5.3",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
Expand Down
2 changes: 1 addition & 1 deletion jscatter/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Module version
version_info = (0, 7, 1, 'final', 1)
version_info = (0, 7, 2, 'final', 1)

# Module version stage suffix map
_specifier_ = {'alpha': 'alpha', 'beta': 'beta', 'candidate': 'rc', 'final': ''}
Expand Down

0 comments on commit 2882acb

Please sign in to comment.