Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
trungleduc committed Apr 24, 2023
1 parent b50a54e commit 99e18a7
Show file tree
Hide file tree
Showing 5 changed files with 4,466 additions and 3,601 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
"@deathbeds/jupyterlab-rjsf": "^1.1.0",
"@jupyter-widgets/base": "^6.0.2",
"@jupyter/collaboration": "^1.0.0-alpha.7",
"@jupyter/docprovider": "^1.0.0-alpha.7",
"@jupyter/ydoc": "^0.3.4",
"@jupyter/docprovider": "^1.0.0-alpha.8",
"@jupyter/ydoc": "^0.3.4 || ^1.0.2",
"@jupyterlab/application": "^4.0.0-beta.0",
"@jupyterlab/apputils": "^4.0.0-beta.0",
"@jupyterlab/coreutils": "^6.0.0-beta.0",
Expand All @@ -84,7 +84,7 @@
"d3-color": "^3.1.0",
"jupytercad-opencascade": "^0.1.1-alpha.2",
"lib0": "^0.2.62",
"react": "^17.0.1",
"react": "^18.0.1",
"styled-components": "^5.3.6",
"three": "^0.135.0",
"three-mesh-bvh": "^0.5.17",
Expand All @@ -93,7 +93,8 @@
"resolutions": {
"@jupyterlab/apputils": "~4.0.0-beta.1",
"@lumino/coreutils": "^2.0.0",
"@jupyterlab/notebook": "~4.0.0-beta.1"
"@jupyterlab/notebook": "~4.0.0-beta.1",
"@jupyterlab/services": " ^7.0.0-beta.0"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
Expand Down
4 changes: 4 additions & 0 deletions src/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,10 @@ export class JupyterCadDoc
super.dispose();
}

get version(): string {
return '0.1.0';
}

get objects(): Array<IJCadObject> {
return this._objects.map(
obj => JSONExt.deepCopy(obj.toJSON()) as IJCadObject
Expand Down
13 changes: 6 additions & 7 deletions ui-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
"description": "JupyterCad Integration Tests",
"private": true,
"scripts": {
"start": "jupyter lab --config jupyter_server_test_config.py",
"test": "jlpm playwright test",
"test:update": "jlpm playwright test --update-snapshots",
"test:debug": "PWDEBUG=1 jlpm playwright test"
"start": "jupyter lab --config jupyter_server_test_config.py",
"test": "jlpm playwright test",
"test:update": "jlpm playwright test --update-snapshots",
"test:debug": "PWDEBUG=1 jlpm playwright test"
},
"devDependencies": {
"@jupyterlab/galata": "^5.0.0-beta.0"
"@jupyterlab/galata": "^5.0.0-beta.0"
}
}

}
Loading

0 comments on commit 99e18a7

Please sign in to comment.