Skip to content

Commit 5c1eebb

Browse files
committed
Publish 0.3.8
SHA256 hashes: yjs-widgets-0.3.8.tgz: 6e99065b8f97a8f5c8799adb6c1a00b3b7c0fd9c2f3b69ff61523b728b6d79fc yjs_widgets-0.3.8-py3-none-any.whl: 3fe0016ac220b066831ca04e49fbec9f3dc4cd05c5886fdff28fa5265565230c yjs_widgets-0.3.8.tar.gz: 24cbb20c9f782fe886fec0d8be5de1156fd598cd18eb43475a83752b6f6b61de
1 parent 85f9f49 commit 5c1eebb

File tree

2 files changed

+118
-100
lines changed

2 files changed

+118
-100
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

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

5-
## 0.3.7
5+
## 0.3.8
6+
7+
([Full Changelog](https://github.com/QuantStack/yjs-widgets/compare/v0.3.7...85f9f49226fd75d1953ea913bbe6cd991b5b611e))
8+
9+
### Maintenance and upkeep improvements
10+
11+
- Install jupyterlab before npm build [#19](https://github.com/QuantStack/yjs-widgets/pull/19) ([@davidbrochart](https://github.com/davidbrochart))
12+
13+
### Other merged PRs
14+
15+
- Use jupyter-releaser [#16](https://github.com/QuantStack/yjs-widgets/pull/16) ([@davidbrochart](https://github.com/davidbrochart))
16+
17+
### Contributors to this release
18+
19+
([GitHub contributors page for this release](https://github.com/QuantStack/yjs-widgets/graphs/contributors?from=2024-10-17&to=2024-10-22&type=c))
20+
21+
[@davidbrochart](https://github.com/search?q=repo%3AQuantStack%2Fyjs-widgets+involves%3Adavidbrochart+updated%3A2024-10-17..2024-10-22&type=Issues) | [@jtpio](https://github.com/search?q=repo%3AQuantStack%2Fyjs-widgets+involves%3Ajtpio+updated%3A2024-10-17..2024-10-22&type=Issues)
622

723
<!-- <END NEW CHANGELOG ENTRY> -->
24+
25+
## 0.3.7

package.json

Lines changed: 99 additions & 99 deletions
Original file line numberDiff line numberDiff line change
@@ -1,101 +1,101 @@
11
{
2-
"name": "yjs-widgets",
3-
"version": "0.3.7",
4-
"description": "A JupyterLab extension for widgets based on Yjs.",
5-
"keywords": [
6-
"jupyter",
7-
"jupyterlab",
8-
"jupyterlab-extension",
9-
"yjs"
10-
],
11-
"homepage": "https://github.com/QuantStack/yjs-widgets",
12-
"bugs": {
13-
"url": "https://github.com/QuantStack/yjs-widgets/issues"
14-
},
15-
"license": "BSD-3-Clause",
16-
"author": {
17-
"name": "Trung Le",
18-
"email": "[email protected]"
19-
},
20-
"files": [
21-
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}"
22-
],
23-
"main": "lib/index.js",
24-
"types": "lib/index.d.ts",
25-
"repository": {
26-
"type": "git",
27-
"url": "https://github.com/QuantStack/yjs-widgets.git"
28-
},
29-
"scripts": {
30-
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
31-
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
32-
"build:labextension": "jupyter labextension build .",
33-
"build:labextension:dev": "jupyter labextension build --development True .",
34-
"build:lib": "tsc",
35-
"clean": "jlpm run clean:lib",
36-
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
37-
"clean:labextension": "rimraf yjs_widgets/labextension yjs_widgets/_version.py",
38-
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
39-
"eslint": "eslint . --ext .ts,.tsx --fix",
40-
"eslint:check": "eslint . --ext .ts,.tsx",
41-
"install:extension": "jlpm run build",
42-
"lint": "jlpm prettier && jlpm eslint",
43-
"lint:check": "jlpm prettier:check && jlpm eslint:check",
44-
"prettier": "jlpm prettier:base --write --list-different",
45-
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
46-
"prettier:check": "jlpm prettier:base --check",
47-
"watch": "run-p watch:src watch:labextension",
48-
"watch:src": "tsc -w",
49-
"watch:labextension": "jupyter labextension watch ."
50-
},
51-
"dependencies": {
52-
"@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3",
53-
"@jupyterlab/application": "^4.0.0",
54-
"@jupyterlab/apputils": "^4.0.0",
55-
"@jupyterlab/console": "^4.2.4",
56-
"@jupyterlab/coreutils": "^6.0.0",
57-
"@jupyterlab/notebook": "^4.0.0",
58-
"@jupyterlab/services": "^7.0.0",
59-
"@lumino/coreutils": "^2.1.1",
60-
"@lumino/signaling": "^2.1.1",
61-
"@lumino/widgets": "^2.1.1",
62-
"lib0": "^0.2.76",
63-
"uuid": "^9.0.0",
64-
"webpack": "^5.77.0",
65-
"webpack-cli": "^5.0.1"
66-
},
67-
"resolutions": {
68-
"@jupyterlab/apputils": "~4.0.0",
69-
"@lumino/coreutils": "^2.1.1",
70-
"@jupyterlab/notebook": "~4.0.0"
71-
},
72-
"devDependencies": {
73-
"@jupyterlab/builder": "^4.2.1",
74-
"@types/node": "^16.11.10",
75-
"@typescript-eslint/eslint-plugin": "^4.8.1",
76-
"@typescript-eslint/parser": "^4.8.1",
77-
"copy-webpack-plugin": "^10.0.0",
78-
"eslint": "^7.14.0",
79-
"eslint-config-prettier": "^6.15.0",
80-
"eslint-plugin-prettier": "^3.1.4",
81-
"file-loader": "^6.2.0",
82-
"npm-run-all": "^4.1.5",
83-
"prettier": "^2.1.1",
84-
"rimraf": "^3.0.2",
85-
"source-map-loader": "^3.0.0",
86-
"ts-loader": "^9.2.6",
87-
"typescript": "~5.0.4"
88-
},
89-
"sideEffects": [
90-
"style/*.css",
91-
"style/index.js"
92-
],
93-
"styleModule": "style/index.js",
94-
"publishConfig": {
95-
"access": "public"
96-
},
97-
"jupyterlab": {
98-
"extension": true,
99-
"outputDir": "yjs_widgets/labextension"
100-
}
2+
"name": "yjs-widgets",
3+
"version": "0.3.8",
4+
"description": "A JupyterLab extension for widgets based on Yjs.",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension",
9+
"yjs"
10+
],
11+
"homepage": "https://github.com/QuantStack/yjs-widgets",
12+
"bugs": {
13+
"url": "https://github.com/QuantStack/yjs-widgets/issues"
14+
},
15+
"license": "BSD-3-Clause",
16+
"author": {
17+
"name": "Trung Le",
18+
"email": "[email protected]"
19+
},
20+
"files": [
21+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}"
22+
],
23+
"main": "lib/index.js",
24+
"types": "lib/index.d.ts",
25+
"repository": {
26+
"type": "git",
27+
"url": "https://github.com/QuantStack/yjs-widgets.git"
28+
},
29+
"scripts": {
30+
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
31+
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
32+
"build:labextension": "jupyter labextension build .",
33+
"build:labextension:dev": "jupyter labextension build --development True .",
34+
"build:lib": "tsc",
35+
"clean": "jlpm run clean:lib",
36+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
37+
"clean:labextension": "rimraf yjs_widgets/labextension yjs_widgets/_version.py",
38+
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
39+
"eslint": "eslint . --ext .ts,.tsx --fix",
40+
"eslint:check": "eslint . --ext .ts,.tsx",
41+
"install:extension": "jlpm run build",
42+
"lint": "jlpm prettier && jlpm eslint",
43+
"lint:check": "jlpm prettier:check && jlpm eslint:check",
44+
"prettier": "jlpm prettier:base --write --list-different",
45+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
46+
"prettier:check": "jlpm prettier:base --check",
47+
"watch": "run-p watch:src watch:labextension",
48+
"watch:src": "tsc -w",
49+
"watch:labextension": "jupyter labextension watch ."
50+
},
51+
"dependencies": {
52+
"@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3",
53+
"@jupyterlab/application": "^4.0.0",
54+
"@jupyterlab/apputils": "^4.0.0",
55+
"@jupyterlab/console": "^4.2.4",
56+
"@jupyterlab/coreutils": "^6.0.0",
57+
"@jupyterlab/notebook": "^4.0.0",
58+
"@jupyterlab/services": "^7.0.0",
59+
"@lumino/coreutils": "^2.1.1",
60+
"@lumino/signaling": "^2.1.1",
61+
"@lumino/widgets": "^2.1.1",
62+
"lib0": "^0.2.76",
63+
"uuid": "^9.0.0",
64+
"webpack": "^5.77.0",
65+
"webpack-cli": "^5.0.1"
66+
},
67+
"resolutions": {
68+
"@jupyterlab/apputils": "~4.0.0",
69+
"@lumino/coreutils": "^2.1.1",
70+
"@jupyterlab/notebook": "~4.0.0"
71+
},
72+
"devDependencies": {
73+
"@jupyterlab/builder": "^4.2.1",
74+
"@types/node": "^16.11.10",
75+
"@typescript-eslint/eslint-plugin": "^4.8.1",
76+
"@typescript-eslint/parser": "^4.8.1",
77+
"copy-webpack-plugin": "^10.0.0",
78+
"eslint": "^7.14.0",
79+
"eslint-config-prettier": "^6.15.0",
80+
"eslint-plugin-prettier": "^3.1.4",
81+
"file-loader": "^6.2.0",
82+
"npm-run-all": "^4.1.5",
83+
"prettier": "^2.1.1",
84+
"rimraf": "^3.0.2",
85+
"source-map-loader": "^3.0.0",
86+
"ts-loader": "^9.2.6",
87+
"typescript": "~5.0.4"
88+
},
89+
"sideEffects": [
90+
"style/*.css",
91+
"style/index.js"
92+
],
93+
"styleModule": "style/index.js",
94+
"publishConfig": {
95+
"access": "public"
96+
},
97+
"jupyterlab": {
98+
"extension": true,
99+
"outputDir": "yjs_widgets/labextension"
100+
}
101101
}

0 commit comments

Comments
 (0)