Skip to content

Commit

Permalink
Publish 0.3.0
Browse files Browse the repository at this point in the history
SHA256 hashes:

glue-jupyterlab-0.3.0.tgz: be09e6f80efc92b8742b41e0bb27ed2370d2a2a63bd012b18fa72d52e29b3036

glue_jupyterlab-0.3.0-py3-none-any.whl: 538786bbf24727b00d24fb7f8c8e9bc825614b575fd0097330b48168e8d55ac6

glue_jupyterlab-0.3.0.tar.gz: b281e4523f3f3daf3a1769b2f7765a531d6f591414e4b25a3760f10f2daa7630
  • Loading branch information
martinRenou committed Jul 10, 2023
1 parent 363164d commit 13bfecb
Show file tree
Hide file tree
Showing 2 changed files with 148 additions and 132 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,20 @@

<!-- <START NEW CHANGELOG ENTRY> -->

## 0.3.0

([Full Changelog](https://github.com/QuantStack/glue-jupyterlab/compare/v0.2.0...363164d5a6b6368b75df7b82e93a889a5e0f7ee3))

### Merged PRs

- Add ability to remove tab [#117](https://github.com/QuantStack/glue-jupyterlab/pull/117) ([@trungleduc](https://github.com/trungleduc))
- Add ability to drag and drop data into existing viewers for new layer creation [#115](https://github.com/QuantStack/glue-jupyterlab/pull/115) ([@brichet](https://github.com/brichet))
- Add documentation [#114](https://github.com/QuantStack/glue-jupyterlab/pull/114) ([@martinRenou](https://github.com/martinRenou))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/QuantStack/glue-jupyterlab/graphs/contributors?from=2023-07-05&to=2023-07-10&type=c))

[@brichet](https://github.com/search?q=repo%3AQuantStack%2Fglue-jupyterlab+involves%3Abrichet+updated%3A2023-07-05..2023-07-10&type=Issues) | [@github-actions](https://github.com/search?q=repo%3AQuantStack%2Fglue-jupyterlab+involves%3Agithub-actions+updated%3A2023-07-05..2023-07-10&type=Issues) | [@martinRenou](https://github.com/search?q=repo%3AQuantStack%2Fglue-jupyterlab+involves%3AmartinRenou+updated%3A2023-07-05..2023-07-10&type=Issues) | [@trungleduc](https://github.com/search?q=repo%3AQuantStack%2Fglue-jupyterlab+involves%3Atrungleduc+updated%3A2023-07-05..2023-07-10&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->
264 changes: 132 additions & 132 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,136 +1,136 @@
{
"name": "glue-jupyterlab",
"version": "0.2.0",
"description": "A JupyterLab extension for glue-viz",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/QuantStack/glue-jupyterlab",
"bugs": {
"url": "https://github.com/QuantStack/glue-jupyterlab/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "QuantStack",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/QuantStack/glue-jupyterlab.git"
},
"scripts": {
"build": "jlpm build:schema && jlpm build:lib && jlpm build:labextension:dev",
"build:prod": "jlpm clean && jlpm build:schema && jlpm build:lib:prod && jlpm build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc --sourceMap",
"build:lib:prod": "tsc",
"build:schema": "json2ts -i src/schemas -o src/_interface --no-unknownAny --unreachableDefinitions --cwd ./src/schemas",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
"clean:labextension": "rimraf glue_jupyterlab/labextension glue_jupyterlab/_version.py",
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --cache --ext .ts,.tsx",
"install:extension": "jlpm build",
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "jlpm prettier:base --check",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
"test": "jest --coverage",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter/docprovider": "^1.0.0-alpha.8",
"@jupyter/ydoc": "^1.0.2",
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/coreutils": "^6.0.0",
"@jupyterlab/docregistry": "^4.0.0",
"@jupyterlab/launcher": "^4.0.2",
"@jupyterlab/mainmenu": "^4.0.0",
"@jupyterlab/notebook": "^4.0.0",
"@jupyterlab/observables": "^5.0.0",
"@jupyterlab/rendermime": "^4.0.0",
"@jupyterlab/services": "^7.0.0",
"@jupyterlab/ui-components": "^4.0.0",
"@lumino/algorithm": "^2.0.0",
"@lumino/commands": "^2.1.0",
"@lumino/coreutils": "^2.1.0",
"@lumino/disposable": "^2.1.0",
"@lumino/messaging": "^2.0.0",
"@lumino/signaling": "^2.1.0",
"@lumino/widgets": "^2.1.0",
"gridstack": "^6.0.1",
"yjs-widgets": "^0.3.3"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@jupyterlab/testutils": "^4.0.0",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^29.5.0",
"json-schema-to-typescript": "^10.1.5",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "~24.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "~5.0.4"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "glue-jupyterlab"
}
}
"name": "glue-jupyterlab",
"version": "0.3.0",
"description": "A JupyterLab extension for glue-viz",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/QuantStack/glue-jupyterlab",
"bugs": {
"url": "https://github.com/QuantStack/glue-jupyterlab/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "QuantStack",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/QuantStack/glue-jupyterlab.git"
},
"scripts": {
"build": "jlpm build:schema && jlpm build:lib && jlpm build:labextension:dev",
"build:prod": "jlpm clean && jlpm build:schema && jlpm build:lib:prod && jlpm build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc --sourceMap",
"build:lib:prod": "tsc",
"build:schema": "json2ts -i src/schemas -o src/_interface --no-unknownAny --unreachableDefinitions --cwd ./src/schemas",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
"clean:labextension": "rimraf glue_jupyterlab/labextension glue_jupyterlab/_version.py",
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --cache --ext .ts,.tsx",
"install:extension": "jlpm build",
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "jlpm prettier:base --check",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
"test": "jest --coverage",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"extension": true,
"outputDir": "glue_jupyterlab/labextension",
"sharedPackages": {
"yjs": {
"bundled": false,
"singleton": true
},
"yjs-widgets": {
"bundled": false,
"singleton": true
}
"dependencies": {
"@jupyter/docprovider": "^1.0.0-alpha.8",
"@jupyter/ydoc": "^1.0.2",
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/coreutils": "^6.0.0",
"@jupyterlab/docregistry": "^4.0.0",
"@jupyterlab/launcher": "^4.0.2",
"@jupyterlab/mainmenu": "^4.0.0",
"@jupyterlab/notebook": "^4.0.0",
"@jupyterlab/observables": "^5.0.0",
"@jupyterlab/rendermime": "^4.0.0",
"@jupyterlab/services": "^7.0.0",
"@jupyterlab/ui-components": "^4.0.0",
"@lumino/algorithm": "^2.0.0",
"@lumino/commands": "^2.1.0",
"@lumino/coreutils": "^2.1.0",
"@lumino/disposable": "^2.1.0",
"@lumino/messaging": "^2.0.0",
"@lumino/signaling": "^2.1.0",
"@lumino/widgets": "^2.1.0",
"gridstack": "^6.0.1",
"yjs-widgets": "^0.3.3"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@jupyterlab/testutils": "^4.0.0",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^29.5.0",
"json-schema-to-typescript": "^10.1.5",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "~24.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "~5.0.4"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "glue-jupyterlab"
}
}
},
"extension": true,
"outputDir": "glue_jupyterlab/labextension",
"sharedPackages": {
"yjs": {
"bundled": false,
"singleton": true
},
"yjs-widgets": {
"bundled": false,
"singleton": true
}
}
}
}
}

0 comments on commit 13bfecb

Please sign in to comment.